[SCM] live-build branch, upstream, updated. upstream/3.0_a33-1-gc82ebe5

Daniel Baumann daniel at debian.org
Fri Sep 30 12:52:41 UTC 2011


The following commit has been merged in the upstream branch:
commit c82ebe5477344fe09915e0f3b50b040df0d82c13
Author: Daniel Baumann <daniel at debian.org>
Date:   Fri Sep 30 14:52:47 2011 +0200

    Adding upstream version 3.0~a34.

diff --git a/VERSION b/VERSION
index e847583..871361b 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.0~a33-1
+3.0~a34-1
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 53c7af9..52b7107 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -22,6 +22,9 @@ Set_defaults ()
 		export LB_BASE
 	fi
 
+	# Setting system type
+	LB_SYSTEM="${LB_MODE:-live}"
+
 	# Setting mode (currently: debian, emdebian, progress, ubuntu and kubuntu)
 	LB_MODE="${LB_MODE:-debian}"
 
@@ -33,7 +36,7 @@ Set_defaults ()
 			;;
 
 		ubuntu|kubuntu)
-			LB_DISTRIBUTION="${LB_DISTRIBUTION:-karmic}"
+			LB_DISTRIBUTION="${LB_DISTRIBUTION:-oneric}"
 			LB_DERIVATIVE="false"
 			;;
 
@@ -170,7 +173,15 @@ Set_defaults ()
 			;;
 
 		*)
-			LB_INITRAMFS="${LB_INITRAMFS:-auto}"
+			case "${LB_SYSTEM}" in
+				live)
+					LB_INITRAMFS="${LB_INITRAMFS:-auto}"
+					;;
+
+				normal)
+					LB_INITRAMFS="${LB_INITRAMFS:-none}"
+					;;
+			esac
 			;;
 	esac
 
@@ -187,7 +198,15 @@ Set_defaults ()
 			;;
 
 		*)
-			LB_INITSYSTEM="${LB_INITSYSTEM:-sysvinit}"
+			case "${LB_SYSTEM}" in
+				live)
+					LB_INITSYSTEM="${LB_INITSYSTEM:-sysvinit}"
+					;;
+
+				normal)
+					LB_INITSYSTEM="${LB_INITSYSTEM:-none}"
+					;;
+			esac
 			;;
 	esac
 
@@ -353,7 +372,7 @@ Set_defaults ()
 					;;
 
 				*)
-					LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://ports.ubuntu.com/}"
+					LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://ports.ubuntu.com/ubuntu-ports/}"
 					;;
 			esac
 
@@ -388,7 +407,7 @@ Set_defaults ()
 					;;
 
 				*)
-					LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://ports.ubuntu.com/}"
+					LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://ports.ubuntu.com/ubuntu-ports/}"
 					;;
 			esac
 
@@ -415,7 +434,7 @@ Set_defaults ()
 					;;
 
 				*)
-					LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE:-http://ports.ubuntu.com/}"
+					LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE:-http://ports.ubuntu.com/ubuntu-ports/}"
 					;;
 			esac
 
@@ -469,7 +488,7 @@ Set_defaults ()
 				;;
 
 				*)
-					LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://ports.ubuntu.com/}"
+					LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://ports.ubuntu.com/ubuntu-ports/}"
 					;;
 			esac
 
@@ -501,7 +520,7 @@ Set_defaults ()
 					;;
 
 				*)
-					LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://ports.ubuntu.com/}"
+					LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://ports.ubuntu.com/ubuntu-ports/}"
 					;;
 			esac
 
@@ -528,7 +547,7 @@ Set_defaults ()
 					;;
 
 				*)
-					LB_PARENT_MIRROR_BINARY_VOLATILE="${LB_PARENT_MIRROR_BINARY_VOLATILE:-http://ports.ubuntu.com/}"
+					LB_PARENT_MIRROR_BINARY_VOLATILE="${LB_PARENT_MIRROR_BINARY_VOLATILE:-http://ports.ubuntu.com/ubuntu-ports/}"
 					;;
 			esac
 			;;
@@ -591,9 +610,6 @@ Set_defaults ()
 	# Setting chroot filesystem
 	LB_CHROOT_FILESYSTEM="${LB_CHROOT_FILESYSTEM:-squashfs}"
 
-	# Setting virtual root size
-	LB_VIRTUAL_ROOT_SIZE="${LB_VIRTUAL_ROOT_SIZE:-10000}"
-
 	# Setting whether to expose root filesystem as read only
 	LB_EXPOSED_ROOT="${LB_EXPOSED_ROOT:-false}"
 
@@ -639,9 +655,16 @@ Set_defaults ()
 	# Setting linux flavour string
 	case "${LB_ARCHITECTURES}" in
 		armel)
-			# 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}"
+			case "${LB_MODE}" in
+                                ubuntu|kubuntu)
+					LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-omap}"
+					;;
+				*)
+					# 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}"
+					;;
+			esac
 			;;
 
 		amd64)
@@ -1033,6 +1056,9 @@ Set_defaults ()
 			;;
 	esac
 
+	# Setting hdd size
+	LB_HDD_SIZE="${LB_HDD_SIZE:-10000}"
+
 	# Setting iso volume
 	case "${LB_MODE}" in
 		debian)
@@ -1112,6 +1138,10 @@ Set_defaults ()
 			LB_SYSLINUX_THEME="${LB_SYSLINUX_THEME:-progress-standard}"
 			;;
 
+		ubuntu)
+			LB_SYSLINUX_THEME="${LB_SYSLINUX_THEME:-ubuntu-oneiric}"
+			;;
+
 		*)
 			LB_SYSLINUX_THEME="${LB_SYSLINUX_THEME:-debian-squeeze}"
 			;;
diff --git a/functions/releases.sh b/functions/releases.sh
index 246b5c2..08597e2 100755
--- a/functions/releases.sh
+++ b/functions/releases.sh
@@ -18,7 +18,6 @@ RELEASE_artax="1.0"
 RELEASE_baureo="unstable"
 
 # Ubuntu releases
-RELEASE_dapper="6.06"		# LTS: 2011-06-01
 RELEASE_hardy="8.04"		# LTS: 2013-04-01
 RELEASE_lucid="10.04"		# LTS: 2015-04-01
 RELEASE_maverick="10.10"	# 2012-04-01
diff --git a/manpages/de/lb.de.1 b/manpages/de/lb.de.1
index 8e9a045..1a8bf02 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb\fP \- wrapper for live\-build programs
diff --git a/manpages/de/lb_binary.de.1 b/manpages/de/lb_binary.de.1
index 684ffef..9133f28 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_checksums.de.1 b/manpages/de/lb_binary_checksums.de.1
index fb23057..e8d2702 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_checksums\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_chroot.de.1 b/manpages/de/lb_binary_chroot.de.1
index 56e3da6..6d9f718 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_chroot\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_debian-installer.de.1 b/manpages/de/lb_binary_debian-installer.de.1
index 6d20631..a5808fd 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_debian\-installer\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_disk.de.1 b/manpages/de/lb_binary_disk.de.1
index 7a3c698..41006f4 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_disk\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_grub.de.1 b/manpages/de/lb_binary_grub.de.1
index 8f8dfa4..7385868 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_grub2.de.1 b/manpages/de/lb_binary_grub2.de.1
index 41eff33..ceb3d6f 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub2\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_hdd.de.1 b/manpages/de/lb_binary_hdd.de.1
index ea58055..d3c18c5 100644
--- a/manpages/de/lb_binary_hdd.de.1
+++ b/manpages/de/lb_binary_hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_hdd\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_hooks.de.1 b/manpages/de/lb_binary_hooks.de.1
index 98fdf44..eac1193 100644
--- a/manpages/de/lb_binary_hooks.de.1
+++ b/manpages/de/lb_binary_hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-hooks\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_includes.de.1 b/manpages/de/lb_binary_includes.de.1
index 71af919..16bec8a 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_includes\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_iso.de.1 b/manpages/de/lb_binary_iso.de.1
index e6789b0..61b71d4 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_iso\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_linux-image.de.1 b/manpages/de/lb_binary_linux-image.de.1
index 816b992..519e43b 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_linux\-image\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_local-includes.de.1 b/manpages/de/lb_binary_local-includes.de.1
index c884391..d310f9d 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-includes\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_manifest.de.1 b/manpages/de/lb_binary_manifest.de.1
index 792e516..a134e92 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_manifest\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_memtest.de.1 b/manpages/de/lb_binary_memtest.de.1
index d4d0ca8..1103a2d 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "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 aafad1c..3ae5092 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_net\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_rootfs.de.1 b/manpages/de/lb_binary_rootfs.de.1
index ff6a375..a54a983 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_rootfs\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_silo.de.1 b/manpages/de/lb_binary_silo.de.1
index 18c9e9a..d480680 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_silo\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_syslinux.de.1 b/manpages/de/lb_binary_syslinux.de.1
index 7cef528..ab9829b 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_syslinux\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_tar.de.1 b/manpages/de/lb_binary_tar.de.1
index 8c2f6ec..cd81220 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_tar\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_virtual-hdd.de.1 b/manpages/de/lb_binary_virtual-hdd.de.1
index ce16cb7..d01e381 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_virtual\-hdd\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_win32-loader.de.1 b/manpages/de/lb_binary_win32-loader.de.1
index fc89386..ba866b7 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_win32\-loader\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_yaboot.de.1 b/manpages/de/lb_binary_yaboot.de.1
index 9cd12d2..6ac3adf 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_yaboot\fP \- Complete the binary stage
diff --git a/manpages/de/lb_bootstrap.de.1 b/manpages/de/lb_bootstrap.de.1
index 69ec312..41fa2d4 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_cache.de.1 b/manpages/de/lb_bootstrap_cache.de.1
index 2d473a5..d333d70 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cache\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_cdebootstrap.de.1 b/manpages/de/lb_bootstrap_cdebootstrap.de.1
index 1ae10ee..c0c5565 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cdebootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_copy.de.1 b/manpages/de/lb_bootstrap_copy.de.1
index b90d1ae..38f4700 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_copy\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_debootstrap.de.1 b/manpages/de/lb_bootstrap_debootstrap.de.1
index a30cac7..6b4322c 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_debootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_build.de.1 b/manpages/de/lb_build.de.1
index dd318a5..e66eb77 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb build\fP \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/de/lb_chroot.de.1 b/manpages/de/lb_chroot.de.1
index 03f4596..5f79df3 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_apt.de.1 b/manpages/de/lb_chroot_apt.de.1
index 750c689..21d5943 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_apt\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_archives.de.1 b/manpages/de/lb_chroot_archives.de.1
index 10ad181..4885c78 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_archives\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_cache.de.1 b/manpages/de/lb_chroot_cache.de.1
index 25d3856..b170aa9 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_cache\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_debianchroot.de.1 b/manpages/de/lb_chroot_debianchroot.de.1
index e2d2503..8aecf1a 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_debianchroot\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_devpts.de.1 b/manpages/de/lb_chroot_devpts.de.1
index adb5cf3..08bdea4 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_devpts\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_dpkg.de.1 b/manpages/de/lb_chroot_dpkg.de.1
index bfc202b..e2ffdb1 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_dpkg\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hacks.de.1 b/manpages/de/lb_chroot_hacks.de.1
index 4ce73b3..3f0833e 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hacks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hooks.de.1 b/manpages/de/lb_chroot_hooks.de.1
index a61a432..46caf81 100644
--- a/manpages/de/lb_chroot_hooks.de.1
+++ b/manpages/de/lb_chroot_hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hooks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hostname.de.1 b/manpages/de/lb_chroot_hostname.de.1
index 01654ee..7bb862b 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hostname\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hosts.de.1 b/manpages/de/lb_chroot_hosts.de.1
index 9a577b0..250da06 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hosts\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_install-packages.de.1 b/manpages/de/lb_chroot_install-packages.de.1
index d2e9bac..7e1fb9f 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_install\-packages\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_interactive.de.1 b/manpages/de/lb_chroot_interactive.de.1
index bf8320f..7fa6a4d 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_interactive\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_linux-image.de.1 b/manpages/de/lb_chroot_linux-image.de.1
index d0c2d49..5f8519b 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_linux\-image\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-includes.de.1 b/manpages/de/lb_chroot_local-includes.de.1
index 69d47d0..a9ee5c9 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-includes\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-patches.de.1 b/manpages/de/lb_chroot_local-patches.de.1
index 930e995..a400992 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-patches\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-preseed.de.1 b/manpages/de/lb_chroot_local-preseed.de.1
index d7bec01..cf36bc4 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-preseed\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_packagelists.de.1 b/manpages/de/lb_chroot_packagelists.de.1
index b643e57..306653f 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packagelists\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_packages.de.1 b/manpages/de/lb_chroot_packages.de.1
index 49ec51f..6ae5541 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "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
deleted file mode 100644
index c954733..0000000
--- a/manpages/de/lb_chroot_preseed.de.1
+++ /dev/null
@@ -1,47 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33\-1 "Debian Live Project"
-
-.SH NAME
-\fBlb chroot_preseed\fP \- Complete the chroot stage
-
-.SH SYNOPSIS
-\fBlb chroot_preseed\fP [\fIlive\-build options\fP]
-
-.SH DESCRIPTION
-\fBlb chroot_preseed\fP is a low\-level command (plumbing) of \fIlive\-build\fP(7),
-the Debian Live tool suite.
-.PP
-
-.\" FIXME
-.SH OPTIONS
-\fBlb chroot_preseed\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_proc.de.1 b/manpages/de/lb_chroot_proc.de.1
index dec0785..44c0060 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_proc\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_resolv.de.1 b/manpages/de/lb_chroot_resolv.de.1
index d050de6..8fcb6cd 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_resolv\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_selinuxfs.de.1 b/manpages/de/lb_chroot_selinuxfs.de.1
index 77e9bf7..c4ea1f2 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_selinuxfs\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_sysfs.de.1 b/manpages/de/lb_chroot_sysfs.de.1
index faaa079..8c74d44 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysfs\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_sysv-rc.de.1 b/manpages/de/lb_chroot_sysv-rc.de.1
index 35a2d47..0280c63 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysv\-rc\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_task-lists.de.1 b/manpages/de/lb_chroot_task-lists.de.1
index 3bec965..3024d2b 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_task\-lists\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_upstart.de.1 b/manpages/de/lb_chroot_upstart.de.1
index 53162e6..b7a5969 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_upstart\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_clean.de.1 b/manpages/de/lb_clean.de.1
index eedfd51..7ee80c0 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb clean\fP \- Clean build directory
diff --git a/manpages/de/lb_config.de.1 b/manpages/de/lb_config.de.1
index 724f5f6..7021a01 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb config\fP \- Create config directory
@@ -66,7 +66,7 @@
 .br
   [\fB\-\-build\-with\-chroot\fP true|false]
 .br
-  [\fB\-\-chroot\-filesystem\fP ext2|ext3|ext4|squashfs|plain|jffs2]
+  [\fB\-\-chroot\-filesystem\fP ext2|ext3|ext4|squashfs|jffs2|none]
 .br
   [\fB\-\-clean\fP]
 .br
@@ -186,6 +186,8 @@
 .br
   [\fB\-\-mode\fP debian|emdebian|progress|ubuntu|kubuntu]
 .br
+  [\fB\-\-system\fP live|normal]
+.br
   [\fB\-\-net\-root\-filesystem\fP nfs|cfs]
 .br
   [\fB\-\-net\-root\-mountoptions\fP \fIOPTIONS\fP]
@@ -228,7 +230,7 @@
 .br
   [\fB\-\-templates\fP \fIPATH\fP]
 .br
-  [\fB\-\-virtual\-root\-size \fP\fIMB\fP]
+  [\fB\-\-hdd\-size \fP\fIMB\fP]
 .br
   [\fB\-\-volatile\fP true|false]
 .br
@@ -401,13 +403,13 @@ squashfs\-tools and others) do not \fBexactely\fP match what is present at
 build\-time in the target distribution. Never do disable this option unless
 you are \fBexactely\fP sure what you are doing and have \fBcompletely\fP\fI
 understood its consequences.\fP
-.IP "\fB\-\-chroot\-filesystem\fP ext2|ext3|ext4|squashfs|plain|jffs2" 4
+.IP "\fB\-\-chroot\-filesystem\fP ext2|ext3|ext4|squashfs|jffs2|none" 4
 defines which filesystem type should be used for the root filesystem
-image. If you use plain, then no filesystem image is created and the root
+image. If you use none, then no filesystem image is created and the root
 filesystem content is copied on the binary image filesystem as flat
 files. Depending on what binary filesystem you have choosen, it may not be
-possible to build with a plain root filesystem, e.g. fat16/fat32 and plain
-don't work as linux does not support to run on them.
+possible to build with such a plain root filesystem, e.g. fat16/fat32 will
+not work as linux does not support to run directly on them.
 .IP \fB\-\-clean\fP 4
 minimizes config directory by automatically removing unused and thus empty
 subdirectories.
@@ -654,6 +656,9 @@ mirror used to build the live system, i.e. the value of \-\-mirror\-bootstrap.
 .IP "\fB\-\-mode\fP debian|emdebian|progress|ubuntu" 4
 defines a global mode to load project specific defaults. By default this is
 set to debian.
+.IP "\fB\-\-system\fP live|normal" 4
+defines if the resulting system image should a live system or a normal,
+non\-live system.
 .IP "\fB\-\-net\-root\-filesystem\fP nfs|cfs" 4
 defines the filesystem that will be configured in the bootloader
 configuration for your netboot image. This defaults to nfs.
@@ -746,10 +751,10 @@ tasksel.
 .IP "\fB\-\-templates\fP \fIPATH\fP" 4
 sets the path to the templates that live\-build is going to use, e.g. for
 bootloaders. By default, this is set to /usr/share/live/build/templates/.
-.IP "\fB\-\-virtual\-root\-size\fP MB" 4
-defines what size the virtual\-hdd image should be. Note that although the
-default is set to 10000 (= 10GB), it will not need 10GB space on your
-harddisk as the files are created as sparse files.
+.IP "\fB\-\-hdd\-size\fP MB" 4
+defines what size the hdd image should be. Note that although the default is
+set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the
+files are created as sparse files.
 .IP "\fB\-\-volatile\fP true|false" 4
 defines if debian volatile package archives should be included in the image
 or not.
diff --git a/manpages/de/lb_local.de.1 b/manpages/de/lb_local.de.1
index 14c698f..f28f44d 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb local\fP \- wrapper for local live\-build programs
diff --git a/manpages/de/lb_source.de.1 b/manpages/de/lb_source.de.1
index 9bd03a0..f457484 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_checksums.de.1 b/manpages/de/lb_source_checksums.de.1
index 2655ec7..2b54e45 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_checksums\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_debian-live.de.1 b/manpages/de/lb_source_debian-live.de.1
index 2162c56..3519612 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\-live\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_debian.de.1 b/manpages/de/lb_source_debian.de.1
index fd781ef..f01d959 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_disk.de.1 b/manpages/de/lb_source_disk.de.1
index 7aca0a1..c6edb52 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_disk\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_hdd.de.1 b/manpages/de/lb_source_hdd.de.1
index 43f5616..d72f689 100644
--- a/manpages/de/lb_source_hdd.de.1
+++ b/manpages/de/lb_source_hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_hdd\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_iso.de.1 b/manpages/de/lb_source_iso.de.1
index cce7ec0..38e9017 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "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 22b4f50..9f45918 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "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 5064306..96534ed 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_tar\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_virtual-hdd.de.1 b/manpages/de/lb_source_virtual-hdd.de.1
index 115bcf2..f8e63bb 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_virtual\-hdd\fP \- Complete the source stage
diff --git a/manpages/de/lb_testroot.de.1 b/manpages/de/lb_testroot.de.1
index 664c7b0..1d6ce98 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb testroot\fP \- Ensure that a system is built as root
diff --git a/manpages/de/live-build.de.7 b/manpages/de/live-build.de.7
index 8b08973..845d651 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\-09\-28 3.0~a33\-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 2011\-09\-30 3.0~a34\-1 "Debian Live Project"
 
 .SH NAME
 \fBlive\-build\fP \- the Debian Live tool suite
@@ -150,8 +150,6 @@ apply local patches against chroot
 use debconf local preseeding file
 .IP \fBlb_chroot_packagelists\fP(1) 4
 queue install of package lists into chroot
-.IP \fBlb_chroot_preseed\fP(1) 4
-use debconf preseeding file
 .IP \fBlb_chroot_proc\fP(1) 4
 mount /proc
 .IP \fBlb_chroot_resolv\fP(1) 4
diff --git a/manpages/en/lb.1 b/manpages/en/lb.1
index b245759..a1dd627 100644
--- a/manpages/en/lb.1
+++ b/manpages/en/lb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb\fR \- wrapper for live\-build programs
diff --git a/manpages/en/lb_binary.1 b/manpages/en/lb_binary.1
index 539f5ac..4faaf01 100644
--- a/manpages/en/lb_binary.1
+++ b/manpages/en/lb_binary.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_checksums.1 b/manpages/en/lb_binary_checksums.1
index 1bebf4d..9b8794c 100644
--- a/manpages/en/lb_binary_checksums.1
+++ b/manpages/en/lb_binary_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_checksums\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_chroot.1 b/manpages/en/lb_binary_chroot.1
index 67792c1..b590957 100644
--- a/manpages/en/lb_binary_chroot.1
+++ b/manpages/en/lb_binary_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_chroot\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_debian-installer.1 b/manpages/en/lb_binary_debian-installer.1
index 8eaab77..1b09def 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_debian\-installer\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_disk.1 b/manpages/en/lb_binary_disk.1
index 91e8d9b..a089085 100644
--- a/manpages/en/lb_binary_disk.1
+++ b/manpages/en/lb_binary_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_disk\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_grub.1 b/manpages/en/lb_binary_grub.1
index f7b3bcf..50c59b2 100644
--- a/manpages/en/lb_binary_grub.1
+++ b/manpages/en/lb_binary_grub.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_grub2.1 b/manpages/en/lb_binary_grub2.1
index 5504363..5dcb47f 100644
--- a/manpages/en/lb_binary_grub2.1
+++ b/manpages/en/lb_binary_grub2.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub2\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_hdd.1 b/manpages/en/lb_binary_hdd.1
index e620753..e7e8dc1 100644
--- a/manpages/en/lb_binary_hdd.1
+++ b/manpages/en/lb_binary_hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_hdd\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_hooks.1 b/manpages/en/lb_binary_hooks.1
index ba0d13a..9dc7c12 100644
--- a/manpages/en/lb_binary_hooks.1
+++ b/manpages/en/lb_binary_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-hooks\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_includes.1 b/manpages/en/lb_binary_includes.1
index 71ffc7c..eaecc06 100644
--- a/manpages/en/lb_binary_includes.1
+++ b/manpages/en/lb_binary_includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_iso.1 b/manpages/en/lb_binary_iso.1
index ae77db0..d52b201 100644
--- a/manpages/en/lb_binary_iso.1
+++ b/manpages/en/lb_binary_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_iso\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_linux-image.1 b/manpages/en/lb_binary_linux-image.1
index 0751474..0b889b2 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_linux\-image\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-includes.1 b/manpages/en/lb_binary_local-includes.1
index 03141ad..3a6d5d3 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_manifest.1 b/manpages/en/lb_binary_manifest.1
index c295935..a02895e 100644
--- a/manpages/en/lb_binary_manifest.1
+++ b/manpages/en/lb_binary_manifest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_manifest\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_memtest.1 b/manpages/en/lb_binary_memtest.1
index c493f02..3875905 100644
--- a/manpages/en/lb_binary_memtest.1
+++ b/manpages/en/lb_binary_memtest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "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 8e11b62..7424b7e 100644
--- a/manpages/en/lb_binary_net.1
+++ b/manpages/en/lb_binary_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_net\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_rootfs.1 b/manpages/en/lb_binary_rootfs.1
index a0cd5d7..5289321 100644
--- a/manpages/en/lb_binary_rootfs.1
+++ b/manpages/en/lb_binary_rootfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_rootfs\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_silo.1 b/manpages/en/lb_binary_silo.1
index da461ea..7d8da04 100644
--- a/manpages/en/lb_binary_silo.1
+++ b/manpages/en/lb_binary_silo.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_silo\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_syslinux.1 b/manpages/en/lb_binary_syslinux.1
index 40643de..2b8a2dd 100644
--- a/manpages/en/lb_binary_syslinux.1
+++ b/manpages/en/lb_binary_syslinux.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_syslinux\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_tar.1 b/manpages/en/lb_binary_tar.1
index 9882730..c95096d 100644
--- a/manpages/en/lb_binary_tar.1
+++ b/manpages/en/lb_binary_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_tar\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_virtual-hdd.1 b/manpages/en/lb_binary_virtual-hdd.1
index d55852e..d57646d 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_virtual\-hdd\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_win32-loader.1 b/manpages/en/lb_binary_win32-loader.1
index 8958bf3..9bec6ae 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_win32\-loader\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_yaboot.1 b/manpages/en/lb_binary_yaboot.1
index 4956c7e..a01e6e5 100644
--- a/manpages/en/lb_binary_yaboot.1
+++ b/manpages/en/lb_binary_yaboot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_yaboot\fR \- Complete the binary stage
diff --git a/manpages/en/lb_bootstrap.1 b/manpages/en/lb_bootstrap.1
index ffdef18..f8e90e4 100644
--- a/manpages/en/lb_bootstrap.1
+++ b/manpages/en/lb_bootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_cache.1 b/manpages/en/lb_bootstrap_cache.1
index 10ad6c7..922cf81 100644
--- a/manpages/en/lb_bootstrap_cache.1
+++ b/manpages/en/lb_bootstrap_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cache\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_cdebootstrap.1 b/manpages/en/lb_bootstrap_cdebootstrap.1
index 4091619..2090efe 100644
--- a/manpages/en/lb_bootstrap_cdebootstrap.1
+++ b/manpages/en/lb_bootstrap_cdebootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cdebootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_copy.1 b/manpages/en/lb_bootstrap_copy.1
index e5f5e2e..2d5c730 100644
--- a/manpages/en/lb_bootstrap_copy.1
+++ b/manpages/en/lb_bootstrap_copy.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_copy\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_debootstrap.1 b/manpages/en/lb_bootstrap_debootstrap.1
index 174f920..5cbfbed 100644
--- a/manpages/en/lb_bootstrap_debootstrap.1
+++ b/manpages/en/lb_bootstrap_debootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_debootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_build.1 b/manpages/en/lb_build.1
index 47e29db..685a243 100644
--- a/manpages/en/lb_build.1
+++ b/manpages/en/lb_build.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb build\fR \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/en/lb_chroot.1 b/manpages/en/lb_chroot.1
index c1e4e26..a49d009 100644
--- a/manpages/en/lb_chroot.1
+++ b/manpages/en/lb_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_apt.1 b/manpages/en/lb_chroot_apt.1
index 4b693a0..d5b30d4 100644
--- a/manpages/en/lb_chroot_apt.1
+++ b/manpages/en/lb_chroot_apt.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_apt\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_archives.1 b/manpages/en/lb_chroot_archives.1
index 01949fd..8c8862c 100644
--- a/manpages/en/lb_chroot_archives.1
+++ b/manpages/en/lb_chroot_archives.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_archives\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_cache.1 b/manpages/en/lb_chroot_cache.1
index 5f3fca0..f173a96 100644
--- a/manpages/en/lb_chroot_cache.1
+++ b/manpages/en/lb_chroot_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_cache\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_debianchroot.1 b/manpages/en/lb_chroot_debianchroot.1
index 4f6b03a..c42c6f9 100644
--- a/manpages/en/lb_chroot_debianchroot.1
+++ b/manpages/en/lb_chroot_debianchroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_debianchroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_devpts.1 b/manpages/en/lb_chroot_devpts.1
index a2250e8..286a15a 100644
--- a/manpages/en/lb_chroot_devpts.1
+++ b/manpages/en/lb_chroot_devpts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_devpts\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_dpkg.1 b/manpages/en/lb_chroot_dpkg.1
index 6a0f4ae..8259042 100644
--- a/manpages/en/lb_chroot_dpkg.1
+++ b/manpages/en/lb_chroot_dpkg.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_dpkg\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hacks.1 b/manpages/en/lb_chroot_hacks.1
index 85edcdc..dc281d0 100644
--- a/manpages/en/lb_chroot_hacks.1
+++ b/manpages/en/lb_chroot_hacks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hacks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hooks.1 b/manpages/en/lb_chroot_hooks.1
index 6c37452..17063fb 100644
--- a/manpages/en/lb_chroot_hooks.1
+++ b/manpages/en/lb_chroot_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hooks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hostname.1 b/manpages/en/lb_chroot_hostname.1
index 93ddd4b..336287f 100644
--- a/manpages/en/lb_chroot_hostname.1
+++ b/manpages/en/lb_chroot_hostname.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hostname\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hosts.1 b/manpages/en/lb_chroot_hosts.1
index 2977555..e30825e 100644
--- a/manpages/en/lb_chroot_hosts.1
+++ b/manpages/en/lb_chroot_hosts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hosts\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_install-packages.1 b/manpages/en/lb_chroot_install-packages.1
index 3fdd2f8..154653a 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_install\-packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_interactive.1 b/manpages/en/lb_chroot_interactive.1
index 85fa774..8904964 100644
--- a/manpages/en/lb_chroot_interactive.1
+++ b/manpages/en/lb_chroot_interactive.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_interactive\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_linux-image.1 b/manpages/en/lb_chroot_linux-image.1
index 9b3e12a..4035f78 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_linux\-image\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-includes.1 b/manpages/en/lb_chroot_local-includes.1
index 7c9f069..6a7f018 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-includes\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-patches.1 b/manpages/en/lb_chroot_local-patches.1
index 5a676ca..f307f5b 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-patches\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-preseed.1 b/manpages/en/lb_chroot_local-preseed.1
index 8cf9a71..4777874 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packagelists.1 b/manpages/en/lb_chroot_packagelists.1
index 2840ad7..7f4b0c6 100644
--- a/manpages/en/lb_chroot_packagelists.1
+++ b/manpages/en/lb_chroot_packagelists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packagelists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packages.1 b/manpages/en/lb_chroot_packages.1
index 408eafa..4081473 100644
--- a/manpages/en/lb_chroot_packages.1
+++ b/manpages/en/lb_chroot_packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "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
deleted file mode 100644
index aaab7b9..0000000
--- a/manpages/en/lb_chroot_preseed.1
+++ /dev/null
@@ -1,33 +0,0 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
-
-.SH NAME
-\fBlb chroot_preseed\fR \- Complete the chroot stage
-
-.SH SYNOPSIS
-\fBlb chroot_preseed\fR [\fIlive\-build options\fR]
-
-.SH DESCRIPTION
-\fBlb chroot_preseed\fR is a low\-level command (plumbing) of \fIlive\-build\fR(7), the Debian Live tool suite.
-.PP
-.\" FIXME
-
-.SH OPTIONS
-\fBlb chroot_preseed\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_proc.1 b/manpages/en/lb_chroot_proc.1
index b6add82..4ca80f8 100644
--- a/manpages/en/lb_chroot_proc.1
+++ b/manpages/en/lb_chroot_proc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_proc\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_resolv.1 b/manpages/en/lb_chroot_resolv.1
index 4d771d7..eec5389 100644
--- a/manpages/en/lb_chroot_resolv.1
+++ b/manpages/en/lb_chroot_resolv.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_resolv\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_selinuxfs.1 b/manpages/en/lb_chroot_selinuxfs.1
index 50f1ce4..68a25e9 100644
--- a/manpages/en/lb_chroot_selinuxfs.1
+++ b/manpages/en/lb_chroot_selinuxfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_selinuxfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysfs.1 b/manpages/en/lb_chroot_sysfs.1
index a3390d9..3dfeb9f 100644
--- a/manpages/en/lb_chroot_sysfs.1
+++ b/manpages/en/lb_chroot_sysfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysv-rc.1 b/manpages/en/lb_chroot_sysv-rc.1
index bd2a04f..2b299fa 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysv-rc\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_task-lists.1 b/manpages/en/lb_chroot_task-lists.1
index de0de6e..4884806 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_task\-lists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_upstart.1 b/manpages/en/lb_chroot_upstart.1
index f42cf98..44599e4 100644
--- a/manpages/en/lb_chroot_upstart.1
+++ b/manpages/en/lb_chroot_upstart.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_upstart\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_clean.1 b/manpages/en/lb_clean.1
index 61e8dd0..bc08ac5 100644
--- a/manpages/en/lb_clean.1
+++ b/manpages/en/lb_clean.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb clean\fR \- Clean build directory
diff --git a/manpages/en/lb_config.1 b/manpages/en/lb_config.1
index 0435d40..c9be53c 100644
--- a/manpages/en/lb_config.1
+++ b/manpages/en/lb_config.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb config\fR \- Create config directory
@@ -61,7 +61,7 @@
 .br
 	[\fB\-\-build\-with\-chroot\fR true|false]
 .br
-	[\fB\-\-chroot\-filesystem\fR ext2|ext3|ext4|squashfs|plain|jffs2]
+	[\fB\-\-chroot\-filesystem\fR ext2|ext3|ext4|squashfs|jffs2|none]
 .br
 	[\fB\-\-clean\fR]
 .br
@@ -181,6 +181,8 @@
 .br
 	[\fB\-\-mode\fR debian|emdebian|progress|ubuntu|kubuntu]
 .br
+	[\fB\-\-system\fR live|normal]
+.br
 	[\fB\-\-net\-root\-filesystem\fR nfs|cfs]
 .br
 	[\fB\-\-net\-root\-mountoptions\fR \fIOPTIONS\fR]
@@ -223,7 +225,7 @@
 .br
 	[\fB\-\-templates\fR \fIPATH\fR]
 .br
-	[\fB\-\-virtual\-root\-size \fIMB\fR]
+	[\fB\-\-hdd\-size \fIMB\fR]
 .br
 	[\fB\-\-volatile\fR true|false]
 .br
@@ -303,8 +305,8 @@ defines if the binary image should contain a file called md5sums.txt, sha1sums.t
 defines the compression program to be used to compress tarballs. Defaults to gzip.
 .IP "\fB\-\-build\-with\-chroot\fR true|false" 4
 defines whetever live\-build should use the tools from within the chroot to build the binary image or not by using and including the host systems tools. This is a very dangerous option, using the tools of the host system can lead to tainted and even non-bootable images if the host systems version of the required tools (mainly these are the bootloaders such as syslinux, grub and yaboot, and the auxilliary tools such as dosfstools, genisoimage, squashfs-tools and others) do not \fBexactely\fR match what is present at build-time in the target distribution. Never do disable this option unless you are \fBexactely\fR sure what you are doing and have \fBcompletely\fI understood its consequences.
-.IP "\fB\-\-chroot\-filesystem\fR ext2|ext3|ext4|squashfs|plain|jffs2" 4
-defines which filesystem type should be used for the root filesystem image. If you use plain, then no filesystem image is created and the root filesystem content is copied on the binary image filesystem as flat files. Depending on what binary filesystem you have choosen, it may not be possible to build with a plain root filesystem, e.g. fat16/fat32 and plain don't work as linux does not support to run on them.
+.IP "\fB\-\-chroot\-filesystem\fR ext2|ext3|ext4|squashfs|jffs2|none" 4
+defines which filesystem type should be used for the root filesystem image. If you use none, then no filesystem image is created and the root filesystem content is copied on the binary image filesystem as flat files. Depending on what binary filesystem you have choosen, it may not be possible to build with such a plain root filesystem, e.g. fat16/fat32 will not work as linux does not support to run directly on them.
 .IP "\fB\-\-clean\fR" 4
 minimizes config directory by automatically removing unused and thus empty subdirectories.
 .IP "\-c|\fB\-\-conffile\fR \fIFILE\fR" 4
@@ -421,6 +423,8 @@ sets the location of the derivatives backports package mirror that should end up
 sets the location of the mirror that will be used to fetch the debian installer images of the derivative. By default, this points to the same mirror used to build the live system, i.e. the value of \-\-mirror\-bootstrap.
 .IP "\fB\-\-mode\fR debian|emdebian|progress|ubuntu" 4
 defines a global mode to load project specific defaults. By default this is set to debian.
+.IP "\fB\-\-system\fR live|normal" 4
+defines if the resulting system image should a live system or a normal, non-live system.
 .IP "\fB\-\-net\-root\-filesystem\fR nfs|cfs" 4
 defines the filesystem that will be configured in the bootloader configuration for your netboot image. This defaults to nfs.
 .IP "\fB\-\-net\-root\-mountoptions\fR \fIOPTIONS\fR" 4
@@ -474,8 +478,8 @@ defines the syslinux theme to use. The theme suffix is the name of a directory i
 selects which program is used to install tasks. By default, this is set to tasksel.
 .IP "\fB\-\-templates\fR \fIPATH\fR" 4
 sets the path to the templates that live\-build is going to use, e.g. for bootloaders. By default, this is set to /usr/share/live/build/templates/.
-.IP "\fB\-\-virtual\-root\-size\fR MB" 4
-defines what size the virtual\-hdd image should be. Note that although the default is set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the files are created as sparse files.
+.IP "\fB\-\-hdd\-size\fR MB" 4
+defines what size the hdd image should be. Note that although the default is set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the files are created as sparse files.
 .IP "\fB\-\-volatile\fR true|false" 4
 defines if debian volatile package archives should be included in the image or not.
 .IP "\fB\-\-backports\fR true|false" 4
diff --git a/manpages/en/lb_local.1 b/manpages/en/lb_local.1
index 67c9b08..28109a4 100644
--- a/manpages/en/lb_local.1
+++ b/manpages/en/lb_local.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb local\fR \- wrapper for local live\-build programs
diff --git a/manpages/en/lb_source.1 b/manpages/en/lb_source.1
index c2a41cd..1da69d0 100644
--- a/manpages/en/lb_source.1
+++ b/manpages/en/lb_source.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_checksums.1 b/manpages/en/lb_source_checksums.1
index 6eb026c..0abd520 100644
--- a/manpages/en/lb_source_checksums.1
+++ b/manpages/en/lb_source_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_checksums\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_debian-live.1 b/manpages/en/lb_source_debian-live.1
index 5264456..3290506 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\-live\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_debian.1 b/manpages/en/lb_source_debian.1
index 3246984..fb07fbc 100644
--- a/manpages/en/lb_source_debian.1
+++ b/manpages/en/lb_source_debian.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_disk.1 b/manpages/en/lb_source_disk.1
index ef22a5a..4c3b30e 100644
--- a/manpages/en/lb_source_disk.1
+++ b/manpages/en/lb_source_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_disk\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_hdd.1 b/manpages/en/lb_source_hdd.1
index 6614fc6..8816070 100644
--- a/manpages/en/lb_source_hdd.1
+++ b/manpages/en/lb_source_hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_hdd\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_iso.1 b/manpages/en/lb_source_iso.1
index 85f8581..8e99696 100644
--- a/manpages/en/lb_source_iso.1
+++ b/manpages/en/lb_source_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "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 37b57db..fa00607 100644
--- a/manpages/en/lb_source_net.1
+++ b/manpages/en/lb_source_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "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 1d6a625..4d7e254 100644
--- a/manpages/en/lb_source_tar.1
+++ b/manpages/en/lb_source_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_tar\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_virtual-hdd.1 b/manpages/en/lb_source_virtual-hdd.1
index 3dd5239..6b936ae 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\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_virtual\-hdd\fR \- Complete the source stage
diff --git a/manpages/en/lb_testroot.1 b/manpages/en/lb_testroot.1
index 53c603f..c1cfb5d 100644
--- a/manpages/en/lb_testroot.1
+++ b/manpages/en/lb_testroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlb testroot\fR \- Ensure that a system is built as root
diff --git a/manpages/en/live-build.7 b/manpages/en/live-build.7
index 3002096..be51904 100644
--- a/manpages/en/live-build.7
+++ b/manpages/en/live-build.7
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 7 2011\-09\-28 3.0~a33-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 2011\-09\-30 3.0~a34-1 "Debian Live Project"
 
 .SH NAME
 \fBlive\-build\fR \- the Debian Live tool suite
@@ -127,8 +127,6 @@ apply local patches against chroot
 use debconf local preseeding file
 .IP "\fBlb_chroot_packagelists\fR(1)" 4
 queue install of package lists into chroot
-.IP "\fBlb_chroot_preseed\fR(1)" 4
-use debconf preseeding file
 .IP "\fBlb_chroot_proc\fR(1)" 4
 mount /proc
 .IP "\fBlb_chroot_resolv\fR(1)" 4
diff --git a/manpages/po/de/lb.1.po b/manpages/po/de/lb.1.po
index 7356580..89ba10e 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,11 +201,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -243,11 +243,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -283,15 +283,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -325,15 +324,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -366,15 +364,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -400,15 +397,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -433,15 +429,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -466,15 +461,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -500,15 +494,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -536,15 +529,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -570,15 +562,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -607,15 +598,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -641,15 +631,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_binary.1.po b/manpages/po/de/lb_binary.1.po
index 7daa8e7..509613d 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_binary_checksums.1.po b/manpages/po/de/lb_binary_checksums.1.po
index d62e4e3..709be7b 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -664,13 +653,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_chroot.1.po b/manpages/po/de/lb_binary_chroot.1.po
index 2a34b9d..df732a9 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_debian-installer.1.po b/manpages/po/de/lb_binary_debian-installer.1.po
index ac2da6d..5bf8333 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_disk.1.po b/manpages/po/de/lb_binary_disk.1.po
index e28e5e6..8766c78 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_grub.1.po b/manpages/po/de/lb_binary_grub.1.po
index c43202c..7481332 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_grub2.1.po b/manpages/po/de/lb_binary_grub2.1.po
index 901b144..08afc53 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_hdd.1.po b/manpages/po/de/lb_binary_hdd.1.po
index 1f0021c..9c5d937 100644
--- a/manpages/po/de/lb_binary_hdd.1.po
+++ b/manpages/po/de/lb_binary_hdd.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_hooks.1.po b/manpages/po/de/lb_binary_hooks.1.po
index 8cb384b..c059cb8 100644
--- a/manpages/po/de/lb_binary_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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_includes.1.po b/manpages/po/de/lb_binary_includes.1.po
index a0cc8e3..23fffd7 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_iso.1.po b/manpages/po/de/lb_binary_iso.1.po
index bd18356..66c4f5d 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_linux-image.1.po b/manpages/po/de/lb_binary_linux-image.1.po
index ac438d4..291fc08 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_local-includes.1.po b/manpages/po/de/lb_binary_local-includes.1.po
index 069757e..fbb24d2 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_manifest.1.po b/manpages/po/de/lb_binary_manifest.1.po
index 403a64a..47606c5 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_memtest.1.po b/manpages/po/de/lb_binary_memtest.1.po
index cbf819a..c7034bd 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_net.1.po b/manpages/po/de/lb_binary_net.1.po
index f139b44..d2ebe5f 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_rootfs.1.po b/manpages/po/de/lb_binary_rootfs.1.po
index 5b54c69..fd50dd7 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_silo.1.po b/manpages/po/de/lb_binary_silo.1.po
index e76412e..ad34e2e 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_syslinux.1.po b/manpages/po/de/lb_binary_syslinux.1.po
index 0c3db1f..2d432ce 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_tar.1.po b/manpages/po/de/lb_binary_tar.1.po
index 028235f..d5543f7 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_virtual-hdd.1.po b/manpages/po/de/lb_binary_virtual-hdd.1.po
index f9e8df8..c9d0598 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_win32-loader.1.po b/manpages/po/de/lb_binary_win32-loader.1.po
index c26a643..0073dde 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_binary_yaboot.1.po b/manpages/po/de/lb_binary_yaboot.1.po
index f6133d5..c038998 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_bootstrap.1.po b/manpages/po/de/lb_bootstrap.1.po
index 1129c08..0fc4b3c 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_bootstrap_cache.1.po b/manpages/po/de/lb_bootstrap_cache.1.po
index bd7a5d4..89f00a8 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
index cdaee24..83011eb 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_bootstrap_copy.1.po b/manpages/po/de/lb_bootstrap_copy.1.po
index 3f77220..3609d8f 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_bootstrap_debootstrap.1.po b/manpages/po/de/lb_bootstrap_debootstrap.1.po
index 2b0d32c..076afe2 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_build.1.po b/manpages/po/de/lb_build.1.po
index ebb5b76..a8cecee 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_chroot.1.po b/manpages/po/de/lb_chroot.1.po
index 7400aad..431f97d 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_chroot_apt.1.po b/manpages/po/de/lb_chroot_apt.1.po
index 6b61afd..73d9961 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_archives.1.po b/manpages/po/de/lb_chroot_archives.1.po
index 317d86e..a7c3fb2 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_cache.1.po b/manpages/po/de/lb_chroot_cache.1.po
index 83be2bb..90a9f0a 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_debianchroot.1.po b/manpages/po/de/lb_chroot_debianchroot.1.po
index 23aa715..f532cbc 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_devpts.1.po b/manpages/po/de/lb_chroot_devpts.1.po
index 2d8a66e..f1687d3 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_dpkg.1.po b/manpages/po/de/lb_chroot_dpkg.1.po
index e15f2f2..e19f9d0 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_hacks.1.po b/manpages/po/de/lb_chroot_hacks.1.po
index bb7f6fb..65a5051 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_hooks.1.po b/manpages/po/de/lb_chroot_hooks.1.po
index d0b916a..b181c3f 100644
--- a/manpages/po/de/lb_chroot_hooks.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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_hostname.1.po b/manpages/po/de/lb_chroot_hostname.1.po
index d067915..2014cdf 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_hosts.1.po b/manpages/po/de/lb_chroot_hosts.1.po
index c6f63a0..756ac5b 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_install-packages.1.po b/manpages/po/de/lb_chroot_install-packages.1.po
index cea33b8..557726c 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_interactive.1.po b/manpages/po/de/lb_chroot_interactive.1.po
index 07dba58..445c05d 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_linux-image.1.po b/manpages/po/de/lb_chroot_linux-image.1.po
index c2ea46f..d93b951 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-includes.1.po b/manpages/po/de/lb_chroot_local-includes.1.po
index 616c958..a790830 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-patches.1.po b/manpages/po/de/lb_chroot_local-patches.1.po
index 7bdf50f..cc21030 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_local-preseed.1.po b/manpages/po/de/lb_chroot_local-preseed.1.po
index 5a86858..8d8f84f 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_packagelists.1.po b/manpages/po/de/lb_chroot_packagelists.1.po
index 4aebcbb..0c654dd 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_packages.1.po b/manpages/po/de/lb_chroot_packages.1.po
index 9cdccd7..5cabf39 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_preseed.1.po b/manpages/po/de/lb_chroot_preseed.1.po
deleted file mode 100644
index 3dbbfe2..0000000
--- a/manpages/po/de/lb_chroot_preseed.1.po
+++ /dev/null
@@ -1,676 +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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+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_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 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_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_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.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_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 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_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_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "2011-09-28"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 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_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_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "3.0~a33-1"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 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_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_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.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_hdd.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_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_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_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-includes.1:3 en/lb_chroot_local-patches.1:3
-#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_hdd.1:3
-#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.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_hdd.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_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_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_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-includes.1:6 en/lb_chroot_local-patches.1:6
-#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_hdd.1:6
-#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.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_hdd.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_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_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_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-includes.1:9 en/lb_chroot_local-patches.1:9
-#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_hdd.1:9
-#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.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_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_manifest.1:14
-#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
-#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.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_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-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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.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_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_manifest.1:17
-#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
-#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.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_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-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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.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_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_manifest.1:21
-#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
-#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.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_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-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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.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_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_manifest.1:23
-#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
-#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.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_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-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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.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_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_manifest.1:25
-#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
-#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.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_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-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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.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_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_manifest.1:26
-#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
-#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.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_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-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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.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_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_manifest.1:28
-#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
-#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.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_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-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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.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_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_manifest.1:29
-#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
-#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.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_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-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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.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_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_manifest.1:31
-#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
-#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.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_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-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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.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_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_manifest.1:32
-#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
-#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.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_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-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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.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_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_manifest.1:33
-#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
-#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.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_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-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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.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_hdd.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_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_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_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-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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
-#, no-wrap
-msgid "B<n/a>"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_preseed.1:5
-msgid "B<lb chroot_preseed> - Complete the chroot stage"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_preseed.1:8
-msgid "B<lb chroot_preseed> [I<live-build options>]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_preseed.1:11
-msgid ""
-"B<lb chroot_preseed> is a low-level command (plumbing) of I<live-build>(7), "
-"the Debian Live tool suite."
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_preseed.1:16
-msgid ""
-"B<lb chroot_preseed> 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_proc.1.po b/manpages/po/de/lb_chroot_proc.1.po
index 0505c88..a36721d 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_resolv.1.po b/manpages/po/de/lb_chroot_resolv.1.po
index 8ba6287..8f0ac14 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_selinuxfs.1.po b/manpages/po/de/lb_chroot_selinuxfs.1.po
index 1571a24..8809d4e 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_sysfs.1.po b/manpages/po/de/lb_chroot_sysfs.1.po
index 3d32c81..4c9fcf4 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_sysv-rc.1.po b/manpages/po/de/lb_chroot_sysv-rc.1.po
index 4b74732..3e1bc25 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_task-lists.1.po b/manpages/po/de/lb_chroot_task-lists.1.po
index 13d2418..6c852c4 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_chroot_upstart.1.po b/manpages/po/de/lb_chroot_upstart.1.po
index a705d9a..ce7226f 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_clean.1.po b/manpages/po/de/lb_clean.1.po
index ee42ff1..7df9acf 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_config.1.po b/manpages/po/de/lb_config.1.po
index ae1d970..fc67f29 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -766,7 +755,7 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:65
-msgid "  [B<--chroot-filesystem> ext2|ext3|ext4|squashfs|plain|jffs2]"
+msgid "  [B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none]"
 msgstr ""
 
 #. type: Plain text
@@ -1067,147 +1056,152 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:185
-msgid "  [B<--net-root-filesystem> nfs|cfs]"
+msgid "  [B<--system> live|normal]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:187
-msgid "  [B<--net-root-mountoptions> I<OPTIONS>]"
+msgid "  [B<--net-root-filesystem> nfs|cfs]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:189
-msgid "  [B<--net-root-path> I<PATH>]"
+msgid "  [B<--net-root-mountoptions> I<OPTIONS>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:191
-msgid "  [B<--net-root-server> I<IP>|I<HOSTNAME>]"
+msgid "  [B<--net-root-path> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:193
-msgid "  [B<--net-cow-filesystem> nfs|cfs]"
+msgid "  [B<--net-root-server> I<IP>|I<HOSTNAME>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:195
-msgid "  [B<--net-cow-mountoptions> I<OPTIONS>]"
+msgid "  [B<--net-cow-filesystem> nfs|cfs]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:197
-msgid "  [B<--net-cow-path> I<PATH>]"
+msgid "  [B<--net-cow-mountoptions> I<OPTIONS>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:199
-msgid "  [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
+msgid "  [B<--net-cow-path> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:201
-msgid "  [B<--net-tarball> true|false]"
+msgid "  [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:203
-msgid "  [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
+msgid "  [B<--net-tarball> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:205
-msgid "  [B<--quiet>]"
+msgid "  [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:207
-msgid "  [B<--root-command> sudo]"
+msgid "  [B<--quiet>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:209
-msgid "  [B<--use-fakeroot> true|false]"
+msgid "  [B<--root-command> sudo]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:211
-msgid "  [B<--archives> I<ARCHIVE>|I<\"ARCHIVES\">]"
+msgid "  [B<--use-fakeroot> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:213
-msgid "  [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
+msgid "  [B<--archives> I<ARCHIVE>|I<\"ARCHIVES\">]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:215
-msgid "  [B<--security> true|false]"
+msgid "  [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:217
-msgid "  [B<--source> true|false]"
+msgid "  [B<--security> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:219
-msgid "  [-s|B<--source-images> iso|net|tar|hdd]"
+msgid "  [B<--source> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:221
-msgid "  [B<--syslinux-theme> I<THEME_SUFFIX>]"
+msgid "  [-s|B<--source-images> iso|net|tar|hdd]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:223
-msgid "  [B<--tasksel> apt|aptitude|tasksel]"
+msgid "  [B<--syslinux-theme> I<THEME_SUFFIX>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:225
-msgid "  [B<--templates> I<PATH>]"
+msgid "  [B<--tasksel> apt|aptitude|tasksel]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:227
-msgid "  [B<--virtual-root-size >I<MB>]"
+msgid "  [B<--templates> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:229
-msgid "  [B<--volatile> true|false]"
+msgid "  [B<--hdd-size >I<MB>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:231
-msgid "  [B<--backports> true|false]"
+msgid "  [B<--volatile> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:233
-msgid "  [B<--exposed-root> true|false]"
+msgid "  [B<--backports> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:235
-msgid "  [B<--username> I<NAME>]"
+msgid "  [B<--exposed-root> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:237
+msgid "  [B<--username> I<NAME>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:239
 msgid "  [B<--verbose>]"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:240
+#: en/lb_config.1:242
 msgid "  [B<--win32-loader true|false]>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:243
+#: en/lb_config.1:245
 msgid ""
 "B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
 "Debian Live tool suite."
@@ -1215,7 +1209,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:246
+#: en/lb_config.1:248
 msgid ""
 "B<lb config> populates the configuration directory for live-build. By "
 "default, this directory is named 'config' and is created in the current "
@@ -1224,7 +1218,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:249
+#: en/lb_config.1:251
 msgid ""
 "Note: Currently B<lb config> tries to be smart and sets defaults for some "
 "options depending on the setting of other options (e.g. which linux packages "
@@ -1240,7 +1234,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:252
+#: en/lb_config.1:254
 msgid ""
 "In addition to its specific options B<lb config> understands all generic "
 "live-build options. See I<live-build>(7) for a complete list of all generic "
@@ -1249,26 +1243,26 @@ msgstr ""
 
 #.  FIXME
 #. type: IP
-#: en/lb_config.1:254
+#: en/lb_config.1:256
 #, no-wrap
 msgid "B<--apt> apt|aptitude"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:256
+#: en/lb_config.1:258
 msgid ""
 "defines if apt-get or aptitude is used to install packages when building the "
 "image. The default is apt."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:256
+#: en/lb_config.1:258
 #, no-wrap
 msgid "B<--apt-ftp-proxy> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:258
+#: en/lb_config.1:260
 msgid ""
 "sets the ftp proxy to be used by apt. By default, this is empty but if the "
 "host has the environment variable ftp_proxy set, apt-ftp-proxy gets "
@@ -1276,13 +1270,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:258
+#: en/lb_config.1:260
 #, no-wrap
 msgid "B<--apt-http-proxy> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:260
+#: en/lb_config.1:262
 msgid ""
 "sets the http proxy to be used by apt. By default, this is empty but if the "
 "host has the environment variable http_proxy set, apt-http-proxy gets "
@@ -1290,26 +1284,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:260
+#: en/lb_config.1:262
 #, no-wrap
 msgid "B<--apt-indices> true|false|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:262
+#: en/lb_config.1:264
 msgid ""
 "defines if the resulting images should have apt indices or not and defaults "
 "to true. If set to none, no indices are included at all."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:262
+#: en/lb_config.1:264
 #, no-wrap
 msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:264
+#: en/lb_config.1:266
 msgid ""
 "defines the default options that will be appended to every apt call that is "
 "made inside chroot during the building of the image. By default, this is set "
@@ -1317,13 +1311,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:264
+#: en/lb_config.1:266
 #, no-wrap
 msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:266
+#: en/lb_config.1:268
 msgid ""
 "defines the default options that will be appended to every aptitude call "
 "that is made inside chroot during building of the image. By default, this is "
@@ -1331,13 +1325,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:266
+#: en/lb_config.1:268
 #, no-wrap
 msgid "B<--apt-pipeline> I<DEPTH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:268
+#: en/lb_config.1:270
 msgid ""
 "sets the depth of the apt/aptitude pipeline. In cases where the remote "
 "server is not RFC conforming or buggy (such as Squid 2.0.2) this option can "
@@ -1349,51 +1343,51 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:268
+#: en/lb_config.1:270
 #, no-wrap
 msgid "B<--apt-recommends> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:270
+#: en/lb_config.1:272
 msgid ""
 "defines if apt should install recommended packages automatically. By "
 "default, this is true except in emdebian mode."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:270
+#: en/lb_config.1:272
 #, no-wrap
 msgid "B<--apt-secure> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:272
+#: en/lb_config.1:274
 msgid ""
 "defines if apt should check repository signatures. This is true by default."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:272
+#: en/lb_config.1:274
 #, no-wrap
 msgid "B<--apt-source-archives> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:274
+#: en/lb_config.1:276
 msgid ""
 "defines if deb-src entries should be included in the resulting live image or "
 "not, defaults to on."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:274
+#: en/lb_config.1:276
 #, no-wrap
 msgid "-a|B<--architectures> I<ARCHITECTURE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:276
+#: en/lb_config.1:278
 msgid ""
 "defines the architecture of the to be build image. By default, this is set "
 "to the host architecture. Note that you cannot crossbuild for another "
@@ -1404,13 +1398,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:276
+#: en/lb_config.1:278
 #, no-wrap
 msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|hdd"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:278
+#: en/lb_config.1:280
 msgid ""
 "defines the image type to build. By default, for images using syslinux this "
 "is set to iso-hybrid to build CD/DVD images that may also be used like hdd "
@@ -1418,13 +1412,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:278
+#: en/lb_config.1:280
 #, no-wrap
 msgid "B<--binary-filesystem> fat16|fat32|ext2|ext3|ext4"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:280
+#: en/lb_config.1:282
 msgid ""
 "defines the filesystem to be used in the image type. This only has an effect "
 "if the selected binary image type does allow to choose a filesystem. For "
@@ -1437,24 +1431,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:280
+#: en/lb_config.1:282
 #, no-wrap
 msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:282
+#: en/lb_config.1:284
 msgid "sets boot parameters specific to debian-installer, if included."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:282
+#: en/lb_config.1:284
 #, no-wrap
 msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:284
+#: en/lb_config.1:286
 msgid ""
 "sets boot parameters specific to debian-live. A complete list of boot "
 "parameters can be found in the I<live-boot>(7) and I<live-config>(7) manual "
@@ -1462,13 +1456,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:284
+#: en/lb_config.1:286
 #, no-wrap
 msgid "B<--bootloader> grub|syslinux|yaboot"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:286
+#: en/lb_config.1:288
 msgid ""
 "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 "
@@ -1481,13 +1475,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:286
+#: en/lb_config.1:288
 #, no-wrap
 msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:288
+#: en/lb_config.1:290
 msgid ""
 "defines which program is used to bootstrap the debian chroot, default is "
 "debootstrap. Note that if you set the bootstrap program to copy, then your "
@@ -1497,13 +1491,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:288
+#: en/lb_config.1:290
 #, no-wrap
 msgid "-f|B<--bootstrap-flavour> minimal|standard"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:290
+#: en/lb_config.1:292
 msgid ""
 "defines if the bootstrap program should bootstrap the standard system (all "
 "packages of priority required and important, which is the default) or a "
@@ -1511,39 +1505,39 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:290
+#: en/lb_config.1:292
 #, no-wrap
 msgid "B<--bootstrap-keyring> I<PACKAGE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:292
+#: en/lb_config.1:294
 msgid ""
 "sets the archive keyring package to be used. Default is debian-archive-"
 "keyring."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:292
+#: en/lb_config.1:294
 #, no-wrap
 msgid "B<--cache> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:294
+#: en/lb_config.1:296
 msgid ""
 "defines globally if any cache should be used at all. Different caches can be "
 "controled through the their own options."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:294
+#: en/lb_config.1:296
 #, no-wrap
 msgid "B<--cache-indices> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:296
+#: en/lb_config.1:298
 msgid ""
 "defines if downloaded package indices and lists should be cached which is "
 "false by default. Enabling it would allow to rebuild an image completely "
@@ -1551,13 +1545,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:296
+#: en/lb_config.1:298
 #, no-wrap
 msgid "B<--cache-packages> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:298
+#: en/lb_config.1:300
 msgid ""
 "defines if downloaded packages files should be cached which is true by "
 "default. Disabling it does save space consumtion in your build directory, "
@@ -1568,13 +1562,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:298
+#: en/lb_config.1:300
 #, no-wrap
 msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:300
+#: en/lb_config.1:302
 msgid ""
 "sets which stages should be cached. By default set to bootstrap. As an "
 "exception to the normal stage names, also rootfs can be used here which does "
@@ -1584,13 +1578,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:300
+#: en/lb_config.1:302
 #, no-wrap
 msgid "B<--checksums> md5|sha1|sha256|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:302
+#: en/lb_config.1:304
 msgid ""
 "defines if the binary image should contain a file called md5sums.txt, "
 "sha1sums.txt and/or sha256sums.txt. These lists all files on the image "
@@ -1602,26 +1596,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:302
+#: en/lb_config.1:304
 #, no-wrap
 msgid "B<--compression> bzip2|gzip|lzip|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:304
+#: en/lb_config.1:306
 msgid ""
 "defines the compression program to be used to compress tarballs. Defaults to "
 "gzip."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:304
+#: en/lb_config.1:306
 #, no-wrap
 msgid "B<--build-with-chroot> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:306
+#: en/lb_config.1:308
 msgid ""
 "defines whetever live-build should use the tools from within the chroot to "
 "build the binary image or not by using and including the host systems tools. "
@@ -1636,56 +1630,56 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:306
+#: en/lb_config.1:308
 #, no-wrap
-msgid "B<--chroot-filesystem> ext2|ext3|ext4|squashfs|plain|jffs2"
+msgid "B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:308
+#: en/lb_config.1:310
 msgid ""
 "defines which filesystem type should be used for the root filesystem image. "
-"If you use plain, then no filesystem image is created and the root "
-"filesystem content is copied on the binary image filesystem as flat files. "
-"Depending on what binary filesystem you have choosen, it may not be possible "
-"to build with a plain root filesystem, e.g. fat16/fat32 and plain don't work "
-"as linux does not support to run on them."
+"If you use none, then no filesystem image is created and the root filesystem "
+"content is copied on the binary image filesystem as flat files. Depending on "
+"what binary filesystem you have choosen, it may not be possible to build "
+"with such a plain root filesystem, e.g. fat16/fat32 will not work as linux "
+"does not support to run directly on them."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:308
+#: en/lb_config.1:310
 #, no-wrap
 msgid "B<--clean>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:310
+#: en/lb_config.1:312
 msgid ""
 "minimizes config directory by automatically removing unused and thus empty "
 "subdirectories."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:310
+#: en/lb_config.1:312
 #, no-wrap
 msgid "-c|B<--conffile> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:312
+#: en/lb_config.1:314
 msgid ""
 "using a user specified alternative configuration file in addition to the "
 "normally used one in the config directory."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:312
+#: en/lb_config.1:314
 #, no-wrap
 msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:314
+#: en/lb_config.1:316
 msgid ""
 "defines what value the debconf frontend should be set to inside the chroot. "
 "Note that setting it to anything by noninteractive, which is the default, "
@@ -1693,13 +1687,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:314
+#: en/lb_config.1:316
 #, no-wrap
 msgid "B<--debconf-nowarnings> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:316
+#: en/lb_config.1:318
 msgid ""
 "defines if warnings of debconf should be displayed or not. Warnings from "
 "debconf are generally very rare and by default, we skipp them, if any, in "
@@ -1707,13 +1701,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:316
+#: en/lb_config.1:318
 #, no-wrap
 msgid "B<--debconf-priority> low|medium|high|critical"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:318
+#: en/lb_config.1:320
 msgid ""
 "defines what value the debconf priority shoul dbe set to inside the chroot. "
 "By default, it is set to critical, which means that almost no questions are "
@@ -1722,13 +1716,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:318
+#: en/lb_config.1:320
 #, no-wrap
 msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:320
+#: en/lb_config.1:322
 msgid ""
 "defines which type, if any, of the debian-installer should be included in "
 "the resulting binary image. By default, no installer is included. All "
@@ -1740,13 +1734,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:320
+#: en/lb_config.1:322
 #, no-wrap
 msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:322
+#: en/lb_config.1:324
 msgid ""
 "defines the distribution where the debian-installer files should be taken "
 "out from. Normally, this should be set to the same distribution as the live "
@@ -1755,26 +1749,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:322
+#: en/lb_config.1:324
 #, no-wrap
 msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:324
+#: en/lb_config.1:326
 msgid ""
 "sets the filename or URL for an optionally used and included preseeding file "
 "for debian-installer."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:324
+#: en/lb_config.1:326
 #, no-wrap
 msgid "B<--debian-installer-gui> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:326
+#: en/lb_config.1:328
 msgid ""
 "defines if the debian-installer graphical GTK interface should be true or "
 "not. In Debian mode and for most versions of Ubuntu, this option is true, "
@@ -1782,60 +1776,60 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:326 en/live-build.7:36
+#: en/lb_config.1:328 en/live-build.7:36
 #, no-wrap
 msgid "B<--debug>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:328
+#: en/lb_config.1:330
 msgid "turn on debugging informational messages."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:328
+#: en/lb_config.1:330
 #, no-wrap
 msgid "-d|B<--distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:330
+#: en/lb_config.1:332
 msgid "defines the distribution of the resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:330
+#: en/lb_config.1:332
 #, no-wrap
 msgid "-d|B<--parent-distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:332
+#: en/lb_config.1:334
 msgid ""
 "defines the parent distribution for derivatives of the resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:332
+#: en/lb_config.1:334
 #, no-wrap
 msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:334
+#: en/lb_config.1:336
 msgid ""
 "defines the parent debian-installer distribution for derivatives of the "
 "resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:334
+#: en/lb_config.1:336
 #, no-wrap
 msgid "B<--dump>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:336
+#: en/lb_config.1:338
 msgid ""
 "prepares a report of the currently present live system configuration and the "
 "version of live-build used. This is useful to provide if you submit bug "
@@ -1844,26 +1838,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:336
+#: en/lb_config.1:338
 #, no-wrap
 msgid "B<--fdisk> fdisk|fdisk.dist"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:338
+#: en/lb_config.1:340
 msgid ""
 "sets the filename of the fdisk binary from the host system that should be "
 "used. This is autodetected and does generally not need any customization."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:338 en/live-build.7:38
+#: en/lb_config.1:340 en/live-build.7:38
 #, no-wrap
 msgid "B<--force>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:340
+#: en/lb_config.1:342
 msgid ""
 "forces re-execution of already run stages. Use only if you know what you are "
 "doing. It is generally safer to use B<lb clean> to clean up before re-"
@@ -1871,26 +1865,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:340
+#: en/lb_config.1:342
 #, no-wrap
 msgid "B<--grub-splash> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:342
+#: en/lb_config.1:344
 msgid ""
 "defines the name of an optional to be included splash screen graphic for the "
 "grub bootloader."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:342
+#: en/lb_config.1:344
 #, no-wrap
 msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:344
+#: en/lb_config.1:346
 msgid ""
 "defines the default options that will be appended to (almost) every gzip "
 "call during the building of the image. By default, this is set to --best to "
@@ -1899,13 +1893,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:344
+#: en/lb_config.1:346
 #, no-wrap
 msgid "B<--hooks> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:346
+#: en/lb_config.1:348
 msgid ""
 "defines which hooks available in /usr/share/live/build/examples/hooks should "
 "be activated. Normally, there are no hooks executed. Make sure you know and "
@@ -1913,24 +1907,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:346
+#: en/lb_config.1:348
 #, no-wrap
 msgid "B<--hostname> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:348
+#: en/lb_config.1:350
 msgid "sets the hostname of the live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:348
+#: en/lb_config.1:350
 #, no-wrap
 msgid "B<--ignore-system-defaults>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:350
+#: en/lb_config.1:352
 msgid ""
 "B<lb config> by default reads system defaults from /etc/live/build.conf and /"
 "etc/live/build.d when generating a new live system config directory. This is "
@@ -1939,13 +1933,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:350
+#: en/lb_config.1:352
 #, no-wrap
 msgid "B<--includes> I<PATH|none>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:352
+#: en/lb_config.1:354
 msgid ""
 "sets the path to the includes that live-build is going to use, e.g. "
 "additional minimal documentation that you want to have on all live systems. "
@@ -1954,13 +1948,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:352
+#: en/lb_config.1:354
 #, no-wrap
 msgid "B<--initramfs> auto|none|live-boot|casper"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:354
+#: en/lb_config.1:356
 msgid ""
 "sets the name of package that contains the live system specific initramfs "
 "modification. By default, auto is used, which means that at build time of "
@@ -1971,26 +1965,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:354
+#: en/lb_config.1:356
 #, no-wrap
 msgid "B<--initramfs-compression> bzip2|gzip|lzma]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:356
+#: en/lb_config.1:358
 msgid ""
 "defines the compression program to be used to compress the initramfs. "
 "Defaults to gzip."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:356
+#: en/lb_config.1:358
 #, no-wrap
 msgid "B<--interactive> shell"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:358
+#: en/lb_config.1:360
 msgid ""
 "defines if after the chroot stage and before the beginning of the binary "
 "stage, a interactive shell login should be spawned in the chroot in order to "
@@ -2004,24 +1998,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:358
+#: en/lb_config.1:360
 #, no-wrap
 msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:360
+#: en/lb_config.1:362
 msgid "defines options to pass to isohybrid."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:360
+#: en/lb_config.1:362
 #, no-wrap
 msgid "B<--iso-application> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:362
+#: en/lb_config.1:364
 msgid ""
 "sets the APPLICATION field in the header of a resulting CD/DVD image and "
 "defaults to \"Debian Live\" in debian mode, and to \"Emdebian Live\" in "
@@ -2029,13 +2023,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:362
+#: en/lb_config.1:364
 #, no-wrap
 msgid "B<--iso-preparer> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:364
+#: en/lb_config.1:366
 msgid ""
 "sets the PREPARER field in the header of a resulting CD/DVD image. By "
 "default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
@@ -2044,13 +2038,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:364
+#: en/lb_config.1:366
 #, no-wrap
 msgid "B<--iso-publisher> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:366
+#: en/lb_config.1:368
 msgid ""
 "sets the PUBLISHED field in the header of a resulting CD/DVD image. By "
 "default, this is set to 'Debian Live project; http:/live.debian.net/; debian-"
@@ -2059,13 +2053,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:366
+#: en/lb_config.1:368
 #, no-wrap
 msgid "B<--iso-volume> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:368
+#: en/lb_config.1:370
 msgid ""
 "sets the VOLUME field in the header of a resulting CD/DVD and defaults to "
 "'(I<MODE>) (I<DISTRIBUTION>) (I<DATE>)' whereas MODE is expanded to the name "
@@ -2074,13 +2068,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:368
+#: en/lb_config.1:370
 #, no-wrap
 msgid "B<--jffs2-eraseblock> I<SIZE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:370
+#: en/lb_config.1:372
 msgid ""
 "sets the eraseblock size for a JFFS2 (Second Journalling Flash File System) "
 "filesystem. The default is 64 KiB. If you use an erase block size different "
@@ -2090,26 +2084,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:370
+#: en/lb_config.1:372
 #, no-wrap
 msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:372
+#: en/lb_config.1:374
 msgid ""
 "sets the keyring package or additional keyring packages. By default this is "
 "set to debian-archive-keyring."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:372
+#: en/lb_config.1:374
 #, no-wrap
 msgid "-l|B<--language> I<LANGUAGE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:374
+#: en/lb_config.1:376
 msgid ""
 "sets the language of a live system by installing l10n related packages. It "
 "doesn't enable generation of the correct locales through setting the right "
@@ -2117,26 +2111,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:374
+#: en/lb_config.1:376
 #, no-wrap
 msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:376
+#: en/lb_config.1:378
 msgid ""
 "sets the kernel flavours to be installed. Note that in case you specify more "
 "than that the first will be configured the default kernel that gets booted."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:376
+#: en/lb_config.1:378
 #, no-wrap
 msgid "B<--linux-packages> \"I<PACKAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:378
+#: en/lb_config.1:380
 msgid ""
 "sets the internal name of the kernel packages naming scheme. If you use "
 "debian kernel packages, you will not have to adjust it. If you decide to use "
@@ -2150,26 +2144,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:378
+#: en/lb_config.1:380
 #, no-wrap
 msgid "B<--losetup> losetup|losetup.orig"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:380
+#: en/lb_config.1:382
 msgid ""
 "sets the filename of the losetup binary from the host system that should be "
 "used. This is autodetected and does generally not need any customization."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:380
+#: en/lb_config.1:382
 #, no-wrap
 msgid "B<--memtest> memtest86+|memtest86|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:382
+#: en/lb_config.1:384
 msgid ""
 "defines if memtest, memtest86+ or no memory tester at all should be included "
 "as secondary bootloader configuration. This is only available on amd64 and "
@@ -2177,13 +2171,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:382
+#: en/lb_config.1:384
 #, no-wrap
 msgid "-m|B<--parent-mirror-bootstrap> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:384
+#: en/lb_config.1:386
 msgid ""
 "sets the location of the debian package mirror that should be used to "
 "bootstrap from. This defaults to http://ftp.de.debian.org/debian/ which may "
@@ -2191,13 +2185,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:384
+#: en/lb_config.1:386
 #, no-wrap
 msgid "B<--parent-mirror-chroot> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:386
+#: en/lb_config.1:388
 msgid ""
 "sets the location of the debian package mirror that will be used to fetch "
 "the packages in order to build the live system. By default, this is set to "
@@ -2205,13 +2199,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:386
+#: en/lb_config.1:388
 #, no-wrap
 msgid "B<--parent-mirror-chroot-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:388
+#: en/lb_config.1:390
 msgid ""
 "sets the location of the debian security package mirror that will be used to "
 "fetch the packages in order to build the live system. By default, this "
@@ -2219,13 +2213,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:388
+#: en/lb_config.1:390
 #, no-wrap
 msgid "B<--parent-mirror-chroot-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:390
+#: en/lb_config.1:392
 msgid ""
 "sets the location of the debian volatile package mirror that will be used to "
 "fetch packages in order to build the live system. By default, this is set to "
@@ -2233,13 +2227,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:390
+#: en/lb_config.1:392
 #, no-wrap
 msgid "B<--parent-mirror-chroot-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:392
+#: en/lb_config.1:394
 msgid ""
 "sets the location of the debian backports package mirror that will be used "
 "to fetch packages in order to build the live system. By default, this points "
@@ -2247,13 +2241,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:392
+#: en/lb_config.1:394
 #, no-wrap
 msgid "B<--parent-mirror-binary> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:394
+#: en/lb_config.1:396
 msgid ""
 "sets the location of the debian package mirror that should end up configured "
 "in the final image and which is the one a user would see and use. This has "
@@ -2263,13 +2257,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:394
+#: en/lb_config.1:396
 #, no-wrap
 msgid "B<--parent-mirror-binary-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:396
+#: en/lb_config.1:398
 msgid ""
 "sets the location of the debian security package mirror that should end up "
 "configured in the final image. By default, 'http://cdn.debian.net/debian-"
@@ -2277,13 +2271,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:396
+#: en/lb_config.1:398
 #, no-wrap
 msgid "B<--parent-mirror-binary-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:398
+#: en/lb_config.1:400
 msgid ""
 "sets the location of the debian volatile package mirror that should end up "
 "configured in the final image. By default, the value of --parent-mirror-"
@@ -2291,13 +2285,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:398
+#: en/lb_config.1:400
 #, no-wrap
 msgid "B<--parent-mirror-binary-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:400
+#: en/lb_config.1:402
 msgid ""
 "sets the location of the debian backports package mirror that should end up "
 "configured in the final image. By default, 'http://backports.debian.org/"
@@ -2305,13 +2299,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:400
+#: en/lb_config.1:402
 #, no-wrap
 msgid "B<--parent-mirror-debian-installer> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:402
+#: en/lb_config.1:404
 msgid ""
 "sets the location of the mirror that will be used to fetch the debian "
 "installer images. By default, this points to the same mirror used to build "
@@ -2319,13 +2313,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:402
+#: en/lb_config.1:404
 #, no-wrap
 msgid "B<--mirror-bootstrap> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:404
+#: en/lb_config.1:406
 msgid ""
 "sets the location of the debian package mirror that should be used to "
 "bootstrap the derivative from. This defaults to http://ftp.de.debian.org/"
@@ -2333,13 +2327,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:404
+#: en/lb_config.1:406
 #, no-wrap
 msgid "B<--mirror-chroot> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:406
+#: en/lb_config.1:408
 msgid ""
 "sets the location of the debian package mirror that will be used to fetch "
 "the packages of the derivative in order to build the live system. By "
@@ -2347,13 +2341,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:406
+#: en/lb_config.1:408
 #, no-wrap
 msgid "B<--mirror-chroot-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:408
+#: en/lb_config.1:410
 msgid ""
 "sets the location of the debian security package mirror that will be used to "
 "fetch the packages of the derivative in order to build the live system. By "
@@ -2361,13 +2355,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:408
+#: en/lb_config.1:410
 #, no-wrap
 msgid "B<--mirror-chroot-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:410
+#: en/lb_config.1:412
 msgid ""
 "sets the location of the debian volatile package mirror that will be used to "
 "fetch packages of the derivative in order to build the live system. By "
@@ -2375,13 +2369,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:410
+#: en/lb_config.1:412
 #, no-wrap
 msgid "B<--mirror-chroot-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:412
+#: en/lb_config.1:414
 msgid ""
 "sets the location of the debian backports package mirror that will be used "
 "to fetch packages of the derivative in order to build the live system. By "
@@ -2389,13 +2383,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:412
+#: en/lb_config.1:414
 #, no-wrap
 msgid "B<--mirror-binary> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:414
+#: en/lb_config.1:416
 msgid ""
 "sets the location of the derivative package mirror that should end up "
 "configured in the final image and which is the one a user would see and use. "
@@ -2405,52 +2399,52 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:414
+#: en/lb_config.1:416
 #, no-wrap
 msgid "B<--mirror-binary-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:416
+#: en/lb_config.1:418
 msgid ""
 "sets the location of the derivatives security package mirror that should end "
 "up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:416
+#: en/lb_config.1:418
 #, no-wrap
 msgid "B<--mirror-binary-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:418
+#: en/lb_config.1:420
 msgid ""
 "sets the location of the derivatives volatile package mirror that should end "
 "up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:418
+#: en/lb_config.1:420
 #, no-wrap
 msgid "B<--mirror-binary-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:420
+#: en/lb_config.1:422
 msgid ""
 "sets the location of the derivatives backports package mirror that should "
 "end up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:420
+#: en/lb_config.1:422
 #, no-wrap
 msgid "B<--mirror-debian-installer> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:422
+#: en/lb_config.1:424
 msgid ""
 "sets the location of the mirror that will be used to fetch the debian "
 "installer images of the derivative. By default, this points to the same "
@@ -2458,52 +2452,65 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:422
+#: en/lb_config.1:424
 #, no-wrap
 msgid "B<--mode> debian|emdebian|progress|ubuntu"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:424
+#: en/lb_config.1:426
 msgid ""
 "defines a global mode to load project specific defaults. By default this is "
 "set to debian."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:424
+#: en/lb_config.1:426
+#, no-wrap
+msgid "B<--system> live|normal"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:428
+msgid ""
+"defines if the resulting system image should a live system or a normal, non-"
+"live system."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:428
 #, no-wrap
 msgid "B<--net-root-filesystem> nfs|cfs"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:426
+#: en/lb_config.1:430
 msgid ""
 "defines the filesystem that will be configured in the bootloader "
 "configuration for your netboot image. This defaults to nfs."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:426
+#: en/lb_config.1:430
 #, no-wrap
 msgid "B<--net-root-mountoptions> I<OPTIONS>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:428
+#: en/lb_config.1:432
 msgid ""
 "sets additional options for mounting the root filesystem in netboot images "
 "and is by default empty."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:428
+#: en/lb_config.1:432
 #, no-wrap
 msgid "B<--net-root-path> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:430
+#: en/lb_config.1:434
 msgid ""
 "sets the file path that will be configured in the bootloader configuration "
 "for your netboot image. This defaults to /srv/debian-live in debian mode and "
@@ -2512,13 +2519,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:430
+#: en/lb_config.1:434
 #, no-wrap
 msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:432
+#: en/lb_config.1:436
 msgid ""
 "sets the IP or hostname that will be configured in the bootloader "
 "configuration for the root filesystem of your netboot image. This defaults "
@@ -2526,38 +2533,38 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:432
+#: en/lb_config.1:436
 #, no-wrap
 msgid "B<--net-cow-filesystem> nfs|cfs"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:434
+#: en/lb_config.1:438
 msgid ""
 "defines the filesystem type for the copy-on-write layer and defaults to nfs."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:434
+#: en/lb_config.1:438
 #, no-wrap
 msgid "B<--net-cow-mountoptions> I<OPTIONS>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:436
+#: en/lb_config.1:440
 msgid ""
 "sets additional options for mounting the copy-on-write layer in netboot "
 "images and is by default empty."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:436
+#: en/lb_config.1:440
 #, no-wrap
 msgid "B<--net-cow-path> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:438
+#: en/lb_config.1:442
 msgid ""
 "defines the path to client writable filesystem. Anywhere that "
 "I<client_mac_address> is specified in the path live-boot will substitute the "
@@ -2565,28 +2572,28 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:441
+#: en/lb_config.1:445
 msgid "Example:"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:443
+#: en/lb_config.1:447
 msgid "/export/hosts/client_mac_address"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:445
+#: en/lb_config.1:449
 msgid "/export/hosts/00-16-D3-33-92-E8"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:445
+#: en/lb_config.1:449
 #, no-wrap
 msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:447
+#: en/lb_config.1:451
 msgid ""
 "sets the IP or hostname that will be configured in the bootloader "
 "configuration for the copy-on-write filesystem of your netboot image and is "
@@ -2594,13 +2601,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:447
+#: en/lb_config.1:451
 #, no-wrap
 msgid "B<--net-tarball> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:449
+#: en/lb_config.1:453
 msgid ""
 "defines if a compressed tarball should be created. Disabling this options "
 "leads to no tarball at all, the plain binary directory is considered the "
@@ -2608,13 +2615,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:449
+#: en/lb_config.1:453
 #, no-wrap
 msgid "-p|B<--package-lists> I<LIST>|\"I<LISTS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:451
+#: en/lb_config.1:455
 msgid ""
 "defines which lists available in /usr/share/live/build/package-lists should "
 "be used. By default, this is set to standard. Note that in case you have "
@@ -2624,37 +2631,37 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:451 en/live-build.7:40
+#: en/lb_config.1:455 en/live-build.7:40
 #, no-wrap
 msgid "B<--quiet>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:453
+#: en/lb_config.1:457
 msgid "reduces the verbosity of messages output by B<lb build>."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:453
+#: en/lb_config.1:457
 #, no-wrap
 msgid "B<--archives> I<ARCHIVE>|\"I<ARCHIVES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:455
+#: en/lb_config.1:459
 msgid ""
 "enables one of available third-party archive configurations in /usr/share/"
 "live/build/archives."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:455
+#: en/lb_config.1:459
 #, no-wrap
 msgid "B<--root-command> sudo"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:457
+#: en/lb_config.1:461
 msgid ""
 "controls if live-build should use sudo internally to build the live image. "
 "Note that this is not well tested and that you should, when relying on sudo, "
@@ -2662,13 +2669,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:457
+#: en/lb_config.1:461
 #, no-wrap
 msgid "B<--use-fakeroot> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:459
+#: en/lb_config.1:463
 msgid ""
 "controls if live-build should utilize fakeroot and fakechroot to try and "
 "avoid requiring root privillages where possible. By default, this option is "
@@ -2676,13 +2683,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:459
+#: en/lb_config.1:463
 #, no-wrap
 msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:461
+#: en/lb_config.1:465
 msgid ""
 "defines which package archive areas of a debian packages archive should be "
 "used for configured debian package mirrors. By default, this is set to main. "
@@ -2692,26 +2699,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:461
+#: en/lb_config.1:465
 #, no-wrap
 msgid "B<--security> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:463
+#: en/lb_config.1:467
 msgid ""
 "defines if the security repositories specified in the security mirror "
 "options should be used or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:463
+#: en/lb_config.1:467
 #, no-wrap
 msgid "B<--source> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:465
+#: en/lb_config.1:469
 msgid ""
 "defines if a corresponding source image to the binary image should be build. "
 "By default this is false because most people do not require this and would "
@@ -2721,50 +2728,50 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:465
+#: en/lb_config.1:469
 #, no-wrap
 msgid "-s|B<--source-images> iso|net|tar|hdd"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:467
+#: en/lb_config.1:471
 msgid "defines the image type for the source image. Default is tar."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:467
+#: en/lb_config.1:471
 #, no-wrap
 msgid "B<--swap-file-path> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:469
+#: en/lb_config.1:473
 msgid ""
 "defines the path to a swap file to create in the binary image. Default is "
 "not to create a swap file."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:469
+#: en/lb_config.1:473
 #, no-wrap
 msgid "B<--swap-file-size> I<MB>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:471
+#: en/lb_config.1:475
 msgid ""
 "defines what size in megabytes the swap file should be, if one is to be "
 "created. Default is 512MB."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:471
+#: en/lb_config.1:475
 #, no-wrap
 msgid "B<--syslinux-theme> I<THEME_SUFFIX>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:473
+#: en/lb_config.1:477
 msgid ""
 "defines the syslinux theme to use. The theme suffix is the name of a "
 "directory in /usr/share/syslinux/themes/ provided by a package named "
@@ -2773,79 +2780,79 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:473
+#: en/lb_config.1:477
 #, no-wrap
 msgid "B<--tasksel> apt|aptitude|tasksel"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:475
+#: en/lb_config.1:479
 msgid ""
 "selects which program is used to install tasks. By default, this is set to "
 "tasksel."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:475
+#: en/lb_config.1:479
 #, no-wrap
 msgid "B<--templates> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:477
+#: en/lb_config.1:481
 msgid ""
 "sets the path to the templates that live-build is going to use, e.g. for "
 "bootloaders. By default, this is set to /usr/share/live/build/templates/."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:477
+#: en/lb_config.1:481
 #, no-wrap
-msgid "B<--virtual-root-size> MB"
+msgid "B<--hdd-size> MB"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:479
+#: en/lb_config.1:483
 msgid ""
-"defines what size the virtual-hdd image should be. Note that although the "
-"default is set to 10000 (= 10GB), it will not need 10GB space on your "
-"harddisk as the files are created as sparse files."
+"defines what size the hdd image should be. Note that although the default is "
+"set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the "
+"files are created as sparse files."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:479
+#: en/lb_config.1:483
 #, no-wrap
 msgid "B<--volatile> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:481
+#: en/lb_config.1:485
 msgid ""
 "defines if debian volatile package archives should be included in the image "
 "or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:481
+#: en/lb_config.1:485
 #, no-wrap
 msgid "B<--backports> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:483
+#: en/lb_config.1:487
 msgid ""
 "defines if debian backports package archives should be included in the image "
 "or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:483
+#: en/lb_config.1:487
 #, no-wrap
 msgid "B<--exposed-root> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:485
+#: en/lb_config.1:489
 msgid ""
 "defines whether to expose the root filesystem as read only and not covered "
 "by the union filesystem. This has useful implications for certain speciality "
@@ -2853,48 +2860,48 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:485
+#: en/lb_config.1:489
 #, no-wrap
 msgid "B<--username> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:487
+#: en/lb_config.1:491
 msgid "sets the name of the account of the default user in the live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:487 en/live-build.7:42
+#: en/lb_config.1:491 en/live-build.7:42
 #, no-wrap
 msgid "B<--verbose>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:489
+#: en/lb_config.1:493
 msgid "increases the verbosity of messages output by B<lb build>."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:489
+#: en/lb_config.1:493
 #, no-wrap
 msgid "B<--win32-loader true|false>"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:492
+#: en/lb_config.1:496
 msgid "defines if win32-loader should be included in the binary image or not."
 msgstr ""
 
 #. type: SH
-#: en/lb_config.1:493
+#: en/lb_config.1:497
 #, no-wrap
 msgid "ENVIRONMENT"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:496
+#: en/lb_config.1:500
 msgid ""
 "Currently, command line switches can also be specified through the "
 "corresponding environment variable. However, this generally should not be "
@@ -2908,20 +2915,20 @@ msgstr ""
 
 #.  FIXME
 #. type: IP
-#: en/lb_config.1:500
+#: en/lb_config.1:504
 #, no-wrap
 msgid "B<auto/config>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:501
+#: en/lb_config.1:505
 #, no-wrap
 msgid "B</etc/live/build.conf, /etc/live/build.d>"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:504
+#: en/lb_config.1:508
 msgid ""
 "An optional, global configuration file for B<lb config> variables. It is "
 "useful to specify a few system wide defaults, like "
@@ -2930,11 +2937,11 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:509 en/live-build.7:233
+#: en/lb_config.1:513 en/live-build.7:231
 msgid "I<live-boot>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:511 en/live-build.7:235
+#: en/lb_config.1:515 en/live-build.7:233
 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 b6e4478..0518b8c 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_source.1.po b/manpages/po/de/lb_source.1.po
index 4992dc4..bc2e77c 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/lb_source_checksums.1.po b/manpages/po/de/lb_source_checksums.1.po
index 8761fd2..c73662c 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_debian-live.1.po b/manpages/po/de/lb_source_debian-live.1.po
index 370d6b7..ed02f6f 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_debian.1.po b/manpages/po/de/lb_source_debian.1.po
index 2359ec3..dca9736 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_disk.1.po b/manpages/po/de/lb_source_disk.1.po
index 74a58a0..9cc3257 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_hdd.1.po b/manpages/po/de/lb_source_hdd.1.po
index 99b3f84..716e3a6 100644
--- a/manpages/po/de/lb_source_hdd.1.po
+++ b/manpages/po/de/lb_source_hdd.1.po
@@ -6,8 +6,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_iso.1.po b/manpages/po/de/lb_source_iso.1.po
index 0ac18e8..1e43d33 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_net.1.po b/manpages/po/de/lb_source_net.1.po
index f17322c..10f580d 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_tar.1.po b/manpages/po/de/lb_source_tar.1.po
index a8afd27..05e0de3 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_source_virtual-hdd.1.po b/manpages/po/de/lb_source_virtual-hdd.1.po
index 7ff5ee0..46944af 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/po/de/lb_testroot.1.po b/manpages/po/de/lb_testroot.1.po
index b476f27..04760ff 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/po/de/live-build.7.po b/manpages/po/de/live-build.7.po
index eb5abfd..ff02705 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-09-28 07:33+0300\n"
-"PO-Revision-Date: 2011-09-13 09:08+0300\n"
+"POT-Creation-Date: 2011-09-30 14:51+0300\n"
+"PO-Revision-Date: 2011-09-28 11:39+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: de\n"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -430,15 +425,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -466,15 +460,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -500,15 +493,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -537,15 +529,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -571,51 +562,50 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:326 en/live-build.7:36
+#: en/lb_config.1:328 en/live-build.7:36
 #, no-wrap
 msgid "B<--debug>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:338 en/live-build.7:38
+#: en/lb_config.1:340 en/live-build.7:38
 #, no-wrap
 msgid "B<--force>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:451 en/live-build.7:40
+#: en/lb_config.1:455 en/live-build.7:40
 #, no-wrap
 msgid "B<--quiet>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:487 en/live-build.7:42
+#: en/lb_config.1:491 en/live-build.7:42
 #, no-wrap
 msgid "B<--verbose>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:509 en/live-build.7:233
+#: en/lb_config.1:513 en/live-build.7:231
 msgid "I<live-boot>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:511 en/live-build.7:235
+#: en/lb_config.1:515 en/live-build.7:233
 msgid "I<live-config>(7)"
 msgstr ""
 
@@ -1192,460 +1182,449 @@ msgstr ""
 #. type: IP
 #: en/live-build.7:130
 #, no-wrap
-msgid "B<lb_chroot_preseed>(1)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-build.7:132
-msgid "use debconf preseeding file"
-msgstr ""
-
-#. type: IP
-#: en/live-build.7:132
-#, no-wrap
 msgid "B<lb_chroot_proc>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:134
+#: en/live-build.7:132
 msgid "mount /proc"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:134
+#: en/live-build.7:132
 #, no-wrap
 msgid "B<lb_chroot_resolv>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:136
+#: en/live-build.7:134
 msgid "manage /etc/resolv.conf"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:136
+#: en/live-build.7:134
 #, no-wrap
 msgid "B<lb_chroot_selinuxfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:138
+#: en/live-build.7:136
 msgid "mount /selinux"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:138
+#: en/live-build.7:136
 #, no-wrap
 msgid "B<lb_chroot_archives>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:140
+#: en/live-build.7:138
 msgid "manage /etc/apt/sources.list"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:140
+#: en/live-build.7:138
 #, no-wrap
 msgid "B<lb_chroot_sysfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:142
+#: en/live-build.7:140
 msgid "mount /sys"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:142
+#: en/live-build.7:140
 #, no-wrap
 msgid "B<lb_chroot_sysv-rc>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:144
+#: en/live-build.7:142
 msgid "manage /usr/sbin/policy-rc.d"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:144
+#: en/live-build.7:142
 #, no-wrap
 msgid "B<lb_chroot_task-lists>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:146
+#: en/live-build.7:144
 msgid "install task lists into chroot"
 msgstr ""
 
 #. type: SS
-#: en/live-build.7:146
+#: en/live-build.7:144
 #, no-wrap
 msgid "Binary commands"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:147
+#: en/live-build.7:145
 #, no-wrap
 msgid "B<lb_binary_chroot>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:149
+#: en/live-build.7:147
 msgid "copy chroot into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:149
+#: en/live-build.7:147
 #, no-wrap
 msgid "B<lb_binary_debian-installer>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:151
+#: en/live-build.7:149
 msgid "install debian-installer into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:151
+#: en/live-build.7:149
 #, no-wrap
 msgid "B<lb_binary_disk>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:153
+#: en/live-build.7:151
 msgid "install disk information into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:153
+#: en/live-build.7:151
 #, no-wrap
 msgid "B<lb_binary_grub>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:155
+#: en/live-build.7:153
 msgid "installs grub into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:155
+#: en/live-build.7:153
 #, no-wrap
 msgid "B<lb_binary_grub2>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:157
+#: en/live-build.7:155
 msgid "installs grub2 into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:157
+#: en/live-build.7:155
 #, no-wrap
 msgid "B<lb_binary_includes>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:159 en/live-build.7:167
+#: en/live-build.7:157 en/live-build.7:165
 msgid "copy files into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:159
+#: en/live-build.7:157
 #, no-wrap
 msgid "B<lb_binary_iso>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:161
+#: en/live-build.7:159
 msgid "build iso binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:161
+#: en/live-build.7:159
 #, no-wrap
 msgid "B<lb_binary_linux-image>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:163
+#: en/live-build.7:161
 msgid "install linux-image into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:163
+#: en/live-build.7:161
 #, no-wrap
 msgid "B<lb_binary_local-hooks>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:165
+#: en/live-build.7:163
 msgid "execute local hooks in binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:165
+#: en/live-build.7:163
 #, no-wrap
 msgid "B<lb_binary_local-includes>(1)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:167
+#: en/live-build.7:165
 #, no-wrap
 msgid "B<lb_binary_local-packagelists>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:169
+#: en/live-build.7:167
 msgid "install local package lists into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:169
+#: en/live-build.7:167
 #, no-wrap
 msgid "B<lb_binary_manifest>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:171
+#: en/live-build.7:169
 msgid "create manifest"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:171
+#: en/live-build.7:169
 #, no-wrap
 msgid "B<lb_binary_checksums>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:173
+#: en/live-build.7:171
 msgid "create binary checksums (md5, sha1, and/or sha256)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:173
+#: en/live-build.7:171
 #, no-wrap
 msgid "B<lb_binary_memtest>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:175
+#: en/live-build.7:173
 msgid "installs a memtest into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:175
+#: en/live-build.7:173
 #, no-wrap
 msgid "B<lb_binary_net>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:177
+#: en/live-build.7:175
 msgid "build netboot binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:177
+#: en/live-build.7:175
 #, no-wrap
 msgid "B<lb_binary_rootfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:179
+#: en/live-build.7:177
 msgid "build rootfs image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:179
+#: en/live-build.7:177
 #, no-wrap
 msgid "B<lb_binary_silo>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:181
+#: en/live-build.7:179
 msgid "installs silo into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:181
+#: en/live-build.7:179
 #, no-wrap
 msgid "B<lb_binary_syslinux>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:183
+#: en/live-build.7:181
 msgid "installs syslinux into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:183
+#: en/live-build.7:181
 #, no-wrap
 msgid "B<lb_binary_tar>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:185
+#: en/live-build.7:183
 msgid "build harddisk binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:185
+#: en/live-build.7:183
 #, no-wrap
 msgid "B<lb_binary_hdd>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:187
+#: en/live-build.7:185
 msgid "build binary hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:187
+#: en/live-build.7:185
 #, no-wrap
 msgid "B<lb_binary_virtual-hdd>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:189
+#: en/live-build.7:187
 msgid "build binary virtual-hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:189
+#: en/live-build.7:187
 #, no-wrap
 msgid "B<lb_binary_win32-loader>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:191
+#: en/live-build.7:189
 msgid "installs win32-loader into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:191
+#: en/live-build.7:189
 #, no-wrap
 msgid "B<lb_binary_yaboot>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:193
+#: en/live-build.7:191
 msgid "installs yaboot into binary"
 msgstr ""
 
 #. type: SS
-#: en/live-build.7:193
+#: en/live-build.7:191
 #, no-wrap
 msgid "Source commands"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:194
+#: en/live-build.7:192
 #, no-wrap
 msgid "B<lb_source_debian>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:196
+#: en/live-build.7:194
 msgid "download sources"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:196
+#: en/live-build.7:194
 #, no-wrap
 msgid "B<lb_source_debian-live>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:198
+#: en/live-build.7:196
 msgid "copy debian-live config into source"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:198
+#: en/live-build.7:196
 #, no-wrap
 msgid "B<lb_source_disk>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:200
+#: en/live-build.7:198
 msgid "install disk information into source"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:200
+#: en/live-build.7:198
 #, no-wrap
 msgid "B<lb_source_iso>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:202
+#: en/live-build.7:200
 msgid "build iso source image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:202
+#: en/live-build.7:200
 #, no-wrap
 msgid "B<lb_source_checksums>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:204
+#: en/live-build.7:202
 msgid "create source checksums (md5, sha1, and/or sha256)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:204
+#: en/live-build.7:202
 #, no-wrap
 msgid "B<lb_source_net>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:206
+#: en/live-build.7:204
 msgid "build source net image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:206
+#: en/live-build.7:204
 #, no-wrap
 msgid "B<lb_source_tar>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:208
+#: en/live-build.7:206
 msgid "build source tarball"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:208
+#: en/live-build.7:206
 #, no-wrap
 msgid "B<lb_source_hdd>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:210
+#: en/live-build.7:208
 msgid "build source hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:210
+#: en/live-build.7:208
 #, no-wrap
 msgid "B<lb_source_virtual-hdd>(1)"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:213
+#: en/live-build.7:211
 msgid "build source virtual-hdd image"
 msgstr ""
 
 #. type: SH
-#: en/live-build.7:214
+#: en/live-build.7:212
 #, no-wrap
 msgid "CONFIG FILES"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:217
+#: en/live-build.7:215
 msgid ""
 "Many live-build commands make use of files in the I<config/> directory to "
 "control what they do. Besides the common I<config/common>, which is used by "
@@ -1657,7 +1636,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:219
+#: en/live-build.7:217
 msgid ""
 "For example, lb_bootstrap_debootstrap uses files named config/bootstrap and "
 "config/bootstrap_debootstrap to read the options it will use. See the man "
@@ -1668,7 +1647,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:221
+#: en/live-build.7:219
 msgid ""
 "Note that live-build will respect environment variables which are present in "
 "the context of the shell it is running. If variables can be read from config "
@@ -1679,7 +1658,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:223
+#: en/live-build.7:221
 msgid ""
 "In some rare cases, you may want to have different versions of these files "
 "for different architectures or distributions. If files named config/stage."
@@ -1692,7 +1671,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:226
+#: en/live-build.7:224
 msgid ""
 "All config files are shell scripts which are sourced by a live-build "
 "program. That means they have to follow the normal shell syntax. You can "
@@ -1700,13 +1679,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:228
+#: en/live-build.7:226
 #, no-wrap
 msgid "B</etc/live/build.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:229
+#: en/live-build.7:227
 #, no-wrap
 msgid "B</etc/live/build.d/>"
 msgstr ""
diff --git a/manpages/po4a.cfg b/manpages/po4a.cfg
index 1c86782..0280107 100644
--- a/manpages/po4a.cfg
+++ b/manpages/po4a.cfg
@@ -49,7 +49,6 @@
 [type: man] en/lb_chroot_local-preseed.1 $lang:$lang/lb_chroot_local-preseed.$lang.1
 [type: man] en/lb_chroot_packagelists.1 $lang:$lang/lb_chroot_packagelists.$lang.1
 [type: man] en/lb_chroot_packages.1 $lang:$lang/lb_chroot_packages.$lang.1
-[type: man] en/lb_chroot_preseed.1 $lang:$lang/lb_chroot_preseed.$lang.1
 [type: man] en/lb_chroot_proc.1 $lang:$lang/lb_chroot_proc.$lang.1
 [type: man] en/lb_chroot_resolv.1 $lang:$lang/lb_chroot_resolv.$lang.1
 [type: man] en/lb_chroot_selinuxfs.1 $lang:$lang/lb_chroot_selinuxfs.$lang.1
diff --git a/manpages/pot/lb.1.pot b/manpages/pot/lb.1.pot
index f245f55..1898c40 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -201,11 +201,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -243,11 +243,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -283,15 +283,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -325,15 +324,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -366,15 +364,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -400,15 +397,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -433,15 +429,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -466,15 +461,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -500,15 +494,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -536,15 +529,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -570,15 +562,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -607,15 +598,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -641,15 +631,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_binary.1.pot b/manpages/pot/lb_binary.1.pot
index 67b9431..4023b70 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_binary_checksums.1.pot b/manpages/pot/lb_binary_checksums.1.pot
index a1a22f1..f79449d 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -664,13 +653,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_chroot.1.pot b/manpages/pot/lb_binary_chroot.1.pot
index f1804c6..c2db107 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_debian-installer.1.pot b/manpages/pot/lb_binary_debian-installer.1.pot
index a191903..b598ac6 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_disk.1.pot b/manpages/pot/lb_binary_disk.1.pot
index 7d9a7ce..f2239fd 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_grub.1.pot b/manpages/pot/lb_binary_grub.1.pot
index 8517524..6ef05fc 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_grub2.1.pot b/manpages/pot/lb_binary_grub2.1.pot
index 0ceab6a..62a81bd 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_hdd.1.pot b/manpages/pot/lb_binary_hdd.1.pot
index f6674df..b8a70eb 100644
--- a/manpages/pot/lb_binary_hdd.1.pot
+++ b/manpages/pot/lb_binary_hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_hooks.1.pot b/manpages/pot/lb_binary_hooks.1.pot
index d3bb419..061979e 100644
--- a/manpages/pot/lb_binary_hooks.1.pot
+++ b/manpages/pot/lb_binary_hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_includes.1.pot b/manpages/pot/lb_binary_includes.1.pot
index ac78d64..a487b9f 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_iso.1.pot b/manpages/pot/lb_binary_iso.1.pot
index e548a86..6c0041c 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_linux-image.1.pot b/manpages/pot/lb_binary_linux-image.1.pot
index cfa5115..6c45e29 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_local-includes.1.pot b/manpages/pot/lb_binary_local-includes.1.pot
index 1e5a77c..3689690 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_manifest.1.pot b/manpages/pot/lb_binary_manifest.1.pot
index f9a966a..bdf1d02 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_memtest.1.pot b/manpages/pot/lb_binary_memtest.1.pot
index 8472928..e756e6c 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_net.1.pot b/manpages/pot/lb_binary_net.1.pot
index 0be0941..97d9222 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_rootfs.1.pot b/manpages/pot/lb_binary_rootfs.1.pot
index 45f1b8e..2bd9cae 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_silo.1.pot b/manpages/pot/lb_binary_silo.1.pot
index c34d428..548b5ff 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_syslinux.1.pot b/manpages/pot/lb_binary_syslinux.1.pot
index 2295fa7..10c32ad 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_tar.1.pot b/manpages/pot/lb_binary_tar.1.pot
index 1c9f09d..3486456 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_virtual-hdd.1.pot b/manpages/pot/lb_binary_virtual-hdd.1.pot
index 504767a..67b8913 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_win32-loader.1.pot b/manpages/pot/lb_binary_win32-loader.1.pot
index 4dddc4c..58f00ae 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_binary_yaboot.1.pot b/manpages/pot/lb_binary_yaboot.1.pot
index b96a3be..ce5bfb3 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_bootstrap.1.pot b/manpages/pot/lb_bootstrap.1.pot
index cd2b60c..aa3b92f 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_bootstrap_cache.1.pot b/manpages/pot/lb_bootstrap_cache.1.pot
index d543a88..0684ab0 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
index fce340a..9bd452d 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_bootstrap_copy.1.pot b/manpages/pot/lb_bootstrap_copy.1.pot
index a5523f5..3f6f484 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_bootstrap_debootstrap.1.pot b/manpages/pot/lb_bootstrap_debootstrap.1.pot
index a5b6450..53642e2 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_build.1.pot b/manpages/pot/lb_build.1.pot
index 61c6c88..5e48ad9 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_chroot.1.pot b/manpages/pot/lb_chroot.1.pot
index 44c2120..6f71037 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_chroot_apt.1.pot b/manpages/pot/lb_chroot_apt.1.pot
index b73a52d..b0b761c 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_archives.1.pot b/manpages/pot/lb_chroot_archives.1.pot
index 772c1c0..240eef2 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_cache.1.pot b/manpages/pot/lb_chroot_cache.1.pot
index d45c915..c98fee8 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_debianchroot.1.pot b/manpages/pot/lb_chroot_debianchroot.1.pot
index e679ea6..6207480 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_devpts.1.pot b/manpages/pot/lb_chroot_devpts.1.pot
index e4f463a..dd2a094 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_dpkg.1.pot b/manpages/pot/lb_chroot_dpkg.1.pot
index c7ef2a4..58a6bf8 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_hacks.1.pot b/manpages/pot/lb_chroot_hacks.1.pot
index 043f00e..d51b83b 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_hooks.1.pot b/manpages/pot/lb_chroot_hooks.1.pot
index 872345c..2cb9b0e 100644
--- a/manpages/pot/lb_chroot_hooks.1.pot
+++ b/manpages/pot/lb_chroot_hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_hostname.1.pot b/manpages/pot/lb_chroot_hostname.1.pot
index c8309e6..21398dc 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_hosts.1.pot b/manpages/pot/lb_chroot_hosts.1.pot
index 7e9a9ea..7db30dd 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_install-packages.1.pot b/manpages/pot/lb_chroot_install-packages.1.pot
index 8650e0d..d668303 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_interactive.1.pot b/manpages/pot/lb_chroot_interactive.1.pot
index 53c14a6..62e2f37 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_linux-image.1.pot b/manpages/pot/lb_chroot_linux-image.1.pot
index d0a0c76..64faf9c 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_local-includes.1.pot b/manpages/pot/lb_chroot_local-includes.1.pot
index bc96089..8f27f05 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_local-patches.1.pot b/manpages/pot/lb_chroot_local-patches.1.pot
index 50d3f5b..e92834f 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_local-preseed.1.pot b/manpages/pot/lb_chroot_local-preseed.1.pot
index 562ccbd..7b54dfa 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_packagelists.1.pot b/manpages/pot/lb_chroot_packagelists.1.pot
index cef3352..2e589d5 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_packages.1.pot b/manpages/pot/lb_chroot_packages.1.pot
index 5975e48..08eae47 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_preseed.1.pot b/manpages/pot/lb_chroot_preseed.1.pot
deleted file mode 100644
index 51ec5cf..0000000
--- a/manpages/pot/lb_chroot_preseed.1.pot
+++ /dev/null
@@ -1,676 +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-09-28 07:33+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_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 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_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_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.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_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 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_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_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "2011-09-28"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 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_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_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
-#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
-#, no-wrap
-msgid "3.0~a33-1"
-msgstr ""
-
-#. type: TH
-#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
-#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
-#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
-#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
-#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
-#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
-#: en/lb_binary_memtest.1:1 en/lb_binary_net.1:1 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_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_hooks.1:1 en/lb_chroot_hostname.1:1
-#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
-#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
-#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
-#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
-#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
-#: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.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_hdd.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_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_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_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-includes.1:3 en/lb_chroot_local-patches.1:3
-#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_hdd.1:3
-#: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.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_hdd.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_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_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_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-includes.1:6 en/lb_chroot_local-patches.1:6
-#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_hdd.1:6
-#: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.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_hdd.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_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_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_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-includes.1:9 en/lb_chroot_local-patches.1:9
-#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_hdd.1:9
-#: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.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_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_manifest.1:14
-#: en/lb_binary_memtest.1:14 en/lb_binary_net.1:14 en/lb_binary_rootfs.1:14
-#: en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 en/lb_binary_tar.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_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-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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.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_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_manifest.1:17
-#: en/lb_binary_memtest.1:17 en/lb_binary_net.1:17 en/lb_binary_rootfs.1:17
-#: en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 en/lb_binary_tar.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_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-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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.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_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_manifest.1:21
-#: en/lb_binary_memtest.1:21 en/lb_binary_net.1:21 en/lb_binary_rootfs.1:21
-#: en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 en/lb_binary_tar.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_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-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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.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_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_manifest.1:23
-#: en/lb_binary_memtest.1:23 en/lb_binary_net.1:23 en/lb_binary_rootfs.1:23
-#: en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 en/lb_binary_tar.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_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-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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.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_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_manifest.1:25
-#: en/lb_binary_memtest.1:25 en/lb_binary_net.1:25 en/lb_binary_rootfs.1:25
-#: en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 en/lb_binary_tar.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_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-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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.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_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_manifest.1:26
-#: en/lb_binary_memtest.1:26 en/lb_binary_net.1:26 en/lb_binary_rootfs.1:26
-#: en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 en/lb_binary_tar.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_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-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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.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_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_manifest.1:28
-#: en/lb_binary_memtest.1:28 en/lb_binary_net.1:28 en/lb_binary_rootfs.1:28
-#: en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 en/lb_binary_tar.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_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-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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.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_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_manifest.1:29
-#: en/lb_binary_memtest.1:29 en/lb_binary_net.1:29 en/lb_binary_rootfs.1:29
-#: en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 en/lb_binary_tar.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_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-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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.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_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_manifest.1:31
-#: en/lb_binary_memtest.1:31 en/lb_binary_net.1:31 en/lb_binary_rootfs.1:31
-#: en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 en/lb_binary_tar.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_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-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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.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_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_manifest.1:32
-#: en/lb_binary_memtest.1:32 en/lb_binary_net.1:32 en/lb_binary_rootfs.1:32
-#: en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 en/lb_binary_tar.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_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-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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.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_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_manifest.1:33
-#: en/lb_binary_memtest.1:33 en/lb_binary_net.1:33 en/lb_binary_rootfs.1:33
-#: en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 en/lb_binary_tar.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_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-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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.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_hdd.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_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_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_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-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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.1:19
-#, no-wrap
-msgid "B<n/a>"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_preseed.1:5
-msgid "B<lb chroot_preseed> - Complete the chroot stage"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_preseed.1:8
-msgid "B<lb chroot_preseed> [I<live-build options>]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_preseed.1:11
-msgid ""
-"B<lb chroot_preseed> is a low-level command (plumbing) of I<live-build>(7), "
-"the Debian Live tool suite."
-msgstr ""
-
-#. type: Plain text
-#: en/lb_chroot_preseed.1:16
-msgid ""
-"B<lb chroot_preseed> 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_proc.1.pot b/manpages/pot/lb_chroot_proc.1.pot
index f73f536..0acd52b 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_resolv.1.pot b/manpages/pot/lb_chroot_resolv.1.pot
index c57bea7..7ae4e03 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_selinuxfs.1.pot b/manpages/pot/lb_chroot_selinuxfs.1.pot
index 05d883a..c955e50 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_sysfs.1.pot b/manpages/pot/lb_chroot_sysfs.1.pot
index 211f80c..e9b00ba 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_sysv-rc.1.pot b/manpages/pot/lb_chroot_sysv-rc.1.pot
index 6a8290e..dbde810 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_task-lists.1.pot b/manpages/pot/lb_chroot_task-lists.1.pot
index 635ee71..ec8377c 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_chroot_upstart.1.pot b/manpages/pot/lb_chroot_upstart.1.pot
index c9f7630..d91a578 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_clean.1.pot b/manpages/pot/lb_clean.1.pot
index 644162f..766926a 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_config.1.pot b/manpages/pot/lb_config.1.pot
index 64ad8b3..6f15625 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -766,7 +755,7 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:65
-msgid "  [B<--chroot-filesystem> ext2|ext3|ext4|squashfs|plain|jffs2]"
+msgid "  [B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none]"
 msgstr ""
 
 #. type: Plain text
@@ -1067,147 +1056,152 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:185
-msgid "  [B<--net-root-filesystem> nfs|cfs]"
+msgid "  [B<--system> live|normal]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:187
-msgid "  [B<--net-root-mountoptions> I<OPTIONS>]"
+msgid "  [B<--net-root-filesystem> nfs|cfs]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:189
-msgid "  [B<--net-root-path> I<PATH>]"
+msgid "  [B<--net-root-mountoptions> I<OPTIONS>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:191
-msgid "  [B<--net-root-server> I<IP>|I<HOSTNAME>]"
+msgid "  [B<--net-root-path> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:193
-msgid "  [B<--net-cow-filesystem> nfs|cfs]"
+msgid "  [B<--net-root-server> I<IP>|I<HOSTNAME>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:195
-msgid "  [B<--net-cow-mountoptions> I<OPTIONS>]"
+msgid "  [B<--net-cow-filesystem> nfs|cfs]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:197
-msgid "  [B<--net-cow-path> I<PATH>]"
+msgid "  [B<--net-cow-mountoptions> I<OPTIONS>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:199
-msgid "  [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
+msgid "  [B<--net-cow-path> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:201
-msgid "  [B<--net-tarball> true|false]"
+msgid "  [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:203
-msgid "  [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
+msgid "  [B<--net-tarball> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:205
-msgid "  [B<--quiet>]"
+msgid "  [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:207
-msgid "  [B<--root-command> sudo]"
+msgid "  [B<--quiet>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:209
-msgid "  [B<--use-fakeroot> true|false]"
+msgid "  [B<--root-command> sudo]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:211
-msgid "  [B<--archives> I<ARCHIVE>|I<\"ARCHIVES\">]"
+msgid "  [B<--use-fakeroot> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:213
-msgid "  [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
+msgid "  [B<--archives> I<ARCHIVE>|I<\"ARCHIVES\">]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:215
-msgid "  [B<--security> true|false]"
+msgid "  [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:217
-msgid "  [B<--source> true|false]"
+msgid "  [B<--security> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:219
-msgid "  [-s|B<--source-images> iso|net|tar|hdd]"
+msgid "  [B<--source> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:221
-msgid "  [B<--syslinux-theme> I<THEME_SUFFIX>]"
+msgid "  [-s|B<--source-images> iso|net|tar|hdd]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:223
-msgid "  [B<--tasksel> apt|aptitude|tasksel]"
+msgid "  [B<--syslinux-theme> I<THEME_SUFFIX>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:225
-msgid "  [B<--templates> I<PATH>]"
+msgid "  [B<--tasksel> apt|aptitude|tasksel]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:227
-msgid "  [B<--virtual-root-size >I<MB>]"
+msgid "  [B<--templates> I<PATH>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:229
-msgid "  [B<--volatile> true|false]"
+msgid "  [B<--hdd-size >I<MB>]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:231
-msgid "  [B<--backports> true|false]"
+msgid "  [B<--volatile> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:233
-msgid "  [B<--exposed-root> true|false]"
+msgid "  [B<--backports> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:235
-msgid "  [B<--username> I<NAME>]"
+msgid "  [B<--exposed-root> true|false]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb_config.1:237
+msgid "  [B<--username> I<NAME>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:239
 msgid "  [B<--verbose>]"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:240
+#: en/lb_config.1:242
 msgid "  [B<--win32-loader true|false]>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:243
+#: en/lb_config.1:245
 msgid ""
 "B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
 "Debian Live tool suite."
@@ -1215,7 +1209,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:246
+#: en/lb_config.1:248
 msgid ""
 "B<lb config> populates the configuration directory for live-build. By "
 "default, this directory is named 'config' and is created in the current "
@@ -1224,7 +1218,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:249
+#: en/lb_config.1:251
 msgid ""
 "Note: Currently B<lb config> tries to be smart and sets defaults for some "
 "options depending on the setting of other options (e.g. which linux packages "
@@ -1240,7 +1234,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:252
+#: en/lb_config.1:254
 msgid ""
 "In addition to its specific options B<lb config> understands all generic "
 "live-build options. See I<live-build>(7) for a complete list of all generic "
@@ -1249,26 +1243,26 @@ msgstr ""
 
 #.  FIXME
 #. type: IP
-#: en/lb_config.1:254
+#: en/lb_config.1:256
 #, no-wrap
 msgid "B<--apt> apt|aptitude"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:256
+#: en/lb_config.1:258
 msgid ""
 "defines if apt-get or aptitude is used to install packages when building the "
 "image. The default is apt."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:256
+#: en/lb_config.1:258
 #, no-wrap
 msgid "B<--apt-ftp-proxy> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:258
+#: en/lb_config.1:260
 msgid ""
 "sets the ftp proxy to be used by apt. By default, this is empty but if the "
 "host has the environment variable ftp_proxy set, apt-ftp-proxy gets "
@@ -1276,13 +1270,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:258
+#: en/lb_config.1:260
 #, no-wrap
 msgid "B<--apt-http-proxy> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:260
+#: en/lb_config.1:262
 msgid ""
 "sets the http proxy to be used by apt. By default, this is empty but if the "
 "host has the environment variable http_proxy set, apt-http-proxy gets "
@@ -1290,26 +1284,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:260
+#: en/lb_config.1:262
 #, no-wrap
 msgid "B<--apt-indices> true|false|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:262
+#: en/lb_config.1:264
 msgid ""
 "defines if the resulting images should have apt indices or not and defaults "
 "to true. If set to none, no indices are included at all."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:262
+#: en/lb_config.1:264
 #, no-wrap
 msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:264
+#: en/lb_config.1:266
 msgid ""
 "defines the default options that will be appended to every apt call that is "
 "made inside chroot during the building of the image. By default, this is set "
@@ -1317,13 +1311,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:264
+#: en/lb_config.1:266
 #, no-wrap
 msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:266
+#: en/lb_config.1:268
 msgid ""
 "defines the default options that will be appended to every aptitude call "
 "that is made inside chroot during building of the image. By default, this is "
@@ -1331,13 +1325,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:266
+#: en/lb_config.1:268
 #, no-wrap
 msgid "B<--apt-pipeline> I<DEPTH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:268
+#: en/lb_config.1:270
 msgid ""
 "sets the depth of the apt/aptitude pipeline. In cases where the remote "
 "server is not RFC conforming or buggy (such as Squid 2.0.2) this option can "
@@ -1349,51 +1343,51 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:268
+#: en/lb_config.1:270
 #, no-wrap
 msgid "B<--apt-recommends> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:270
+#: en/lb_config.1:272
 msgid ""
 "defines if apt should install recommended packages automatically. By "
 "default, this is true except in emdebian mode."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:270
+#: en/lb_config.1:272
 #, no-wrap
 msgid "B<--apt-secure> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:272
+#: en/lb_config.1:274
 msgid ""
 "defines if apt should check repository signatures. This is true by default."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:272
+#: en/lb_config.1:274
 #, no-wrap
 msgid "B<--apt-source-archives> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:274
+#: en/lb_config.1:276
 msgid ""
 "defines if deb-src entries should be included in the resulting live image or "
 "not, defaults to on."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:274
+#: en/lb_config.1:276
 #, no-wrap
 msgid "-a|B<--architectures> I<ARCHITECTURE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:276
+#: en/lb_config.1:278
 msgid ""
 "defines the architecture of the to be build image. By default, this is set "
 "to the host architecture. Note that you cannot crossbuild for another "
@@ -1404,13 +1398,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:276
+#: en/lb_config.1:278
 #, no-wrap
 msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|hdd"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:278
+#: en/lb_config.1:280
 msgid ""
 "defines the image type to build. By default, for images using syslinux this "
 "is set to iso-hybrid to build CD/DVD images that may also be used like hdd "
@@ -1418,13 +1412,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:278
+#: en/lb_config.1:280
 #, no-wrap
 msgid "B<--binary-filesystem> fat16|fat32|ext2|ext3|ext4"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:280
+#: en/lb_config.1:282
 msgid ""
 "defines the filesystem to be used in the image type. This only has an effect "
 "if the selected binary image type does allow to choose a filesystem. For "
@@ -1437,24 +1431,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:280
+#: en/lb_config.1:282
 #, no-wrap
 msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:282
+#: en/lb_config.1:284
 msgid "sets boot parameters specific to debian-installer, if included."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:282
+#: en/lb_config.1:284
 #, no-wrap
 msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:284
+#: en/lb_config.1:286
 msgid ""
 "sets boot parameters specific to debian-live. A complete list of boot "
 "parameters can be found in the I<live-boot>(7) and I<live-config>(7) manual "
@@ -1462,13 +1456,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:284
+#: en/lb_config.1:286
 #, no-wrap
 msgid "B<--bootloader> grub|syslinux|yaboot"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:286
+#: en/lb_config.1:288
 msgid ""
 "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 "
@@ -1481,13 +1475,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:286
+#: en/lb_config.1:288
 #, no-wrap
 msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:288
+#: en/lb_config.1:290
 msgid ""
 "defines which program is used to bootstrap the debian chroot, default is "
 "debootstrap. Note that if you set the bootstrap program to copy, then your "
@@ -1497,13 +1491,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:288
+#: en/lb_config.1:290
 #, no-wrap
 msgid "-f|B<--bootstrap-flavour> minimal|standard"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:290
+#: en/lb_config.1:292
 msgid ""
 "defines if the bootstrap program should bootstrap the standard system (all "
 "packages of priority required and important, which is the default) or a "
@@ -1511,39 +1505,39 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:290
+#: en/lb_config.1:292
 #, no-wrap
 msgid "B<--bootstrap-keyring> I<PACKAGE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:292
+#: en/lb_config.1:294
 msgid ""
 "sets the archive keyring package to be used. Default is debian-archive-"
 "keyring."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:292
+#: en/lb_config.1:294
 #, no-wrap
 msgid "B<--cache> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:294
+#: en/lb_config.1:296
 msgid ""
 "defines globally if any cache should be used at all. Different caches can be "
 "controled through the their own options."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:294
+#: en/lb_config.1:296
 #, no-wrap
 msgid "B<--cache-indices> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:296
+#: en/lb_config.1:298
 msgid ""
 "defines if downloaded package indices and lists should be cached which is "
 "false by default. Enabling it would allow to rebuild an image completely "
@@ -1551,13 +1545,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:296
+#: en/lb_config.1:298
 #, no-wrap
 msgid "B<--cache-packages> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:298
+#: en/lb_config.1:300
 msgid ""
 "defines if downloaded packages files should be cached which is true by "
 "default. Disabling it does save space consumtion in your build directory, "
@@ -1568,13 +1562,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:298
+#: en/lb_config.1:300
 #, no-wrap
 msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:300
+#: en/lb_config.1:302
 msgid ""
 "sets which stages should be cached. By default set to bootstrap. As an "
 "exception to the normal stage names, also rootfs can be used here which does "
@@ -1584,13 +1578,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:300
+#: en/lb_config.1:302
 #, no-wrap
 msgid "B<--checksums> md5|sha1|sha256|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:302
+#: en/lb_config.1:304
 msgid ""
 "defines if the binary image should contain a file called md5sums.txt, "
 "sha1sums.txt and/or sha256sums.txt. These lists all files on the image "
@@ -1602,26 +1596,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:302
+#: en/lb_config.1:304
 #, no-wrap
 msgid "B<--compression> bzip2|gzip|lzip|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:304
+#: en/lb_config.1:306
 msgid ""
 "defines the compression program to be used to compress tarballs. Defaults to "
 "gzip."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:304
+#: en/lb_config.1:306
 #, no-wrap
 msgid "B<--build-with-chroot> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:306
+#: en/lb_config.1:308
 msgid ""
 "defines whetever live-build should use the tools from within the chroot to "
 "build the binary image or not by using and including the host systems tools. "
@@ -1636,56 +1630,56 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:306
+#: en/lb_config.1:308
 #, no-wrap
-msgid "B<--chroot-filesystem> ext2|ext3|ext4|squashfs|plain|jffs2"
+msgid "B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:308
+#: en/lb_config.1:310
 msgid ""
 "defines which filesystem type should be used for the root filesystem image. "
-"If you use plain, then no filesystem image is created and the root "
-"filesystem content is copied on the binary image filesystem as flat files. "
-"Depending on what binary filesystem you have choosen, it may not be possible "
-"to build with a plain root filesystem, e.g. fat16/fat32 and plain don't work "
-"as linux does not support to run on them."
+"If you use none, then no filesystem image is created and the root filesystem "
+"content is copied on the binary image filesystem as flat files. Depending on "
+"what binary filesystem you have choosen, it may not be possible to build "
+"with such a plain root filesystem, e.g. fat16/fat32 will not work as linux "
+"does not support to run directly on them."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:308
+#: en/lb_config.1:310
 #, no-wrap
 msgid "B<--clean>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:310
+#: en/lb_config.1:312
 msgid ""
 "minimizes config directory by automatically removing unused and thus empty "
 "subdirectories."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:310
+#: en/lb_config.1:312
 #, no-wrap
 msgid "-c|B<--conffile> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:312
+#: en/lb_config.1:314
 msgid ""
 "using a user specified alternative configuration file in addition to the "
 "normally used one in the config directory."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:312
+#: en/lb_config.1:314
 #, no-wrap
 msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:314
+#: en/lb_config.1:316
 msgid ""
 "defines what value the debconf frontend should be set to inside the chroot. "
 "Note that setting it to anything by noninteractive, which is the default, "
@@ -1693,13 +1687,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:314
+#: en/lb_config.1:316
 #, no-wrap
 msgid "B<--debconf-nowarnings> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:316
+#: en/lb_config.1:318
 msgid ""
 "defines if warnings of debconf should be displayed or not. Warnings from "
 "debconf are generally very rare and by default, we skipp them, if any, in "
@@ -1707,13 +1701,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:316
+#: en/lb_config.1:318
 #, no-wrap
 msgid "B<--debconf-priority> low|medium|high|critical"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:318
+#: en/lb_config.1:320
 msgid ""
 "defines what value the debconf priority shoul dbe set to inside the chroot. "
 "By default, it is set to critical, which means that almost no questions are "
@@ -1722,13 +1716,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:318
+#: en/lb_config.1:320
 #, no-wrap
 msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:320
+#: en/lb_config.1:322
 msgid ""
 "defines which type, if any, of the debian-installer should be included in "
 "the resulting binary image. By default, no installer is included. All "
@@ -1740,13 +1734,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:320
+#: en/lb_config.1:322
 #, no-wrap
 msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:322
+#: en/lb_config.1:324
 msgid ""
 "defines the distribution where the debian-installer files should be taken "
 "out from. Normally, this should be set to the same distribution as the live "
@@ -1755,26 +1749,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:322
+#: en/lb_config.1:324
 #, no-wrap
 msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:324
+#: en/lb_config.1:326
 msgid ""
 "sets the filename or URL for an optionally used and included preseeding file "
 "for debian-installer."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:324
+#: en/lb_config.1:326
 #, no-wrap
 msgid "B<--debian-installer-gui> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:326
+#: en/lb_config.1:328
 msgid ""
 "defines if the debian-installer graphical GTK interface should be true or "
 "not. In Debian mode and for most versions of Ubuntu, this option is true, "
@@ -1782,60 +1776,60 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:326 en/live-build.7:36
+#: en/lb_config.1:328 en/live-build.7:36
 #, no-wrap
 msgid "B<--debug>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:328
+#: en/lb_config.1:330
 msgid "turn on debugging informational messages."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:328
+#: en/lb_config.1:330
 #, no-wrap
 msgid "-d|B<--distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:330
+#: en/lb_config.1:332
 msgid "defines the distribution of the resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:330
+#: en/lb_config.1:332
 #, no-wrap
 msgid "-d|B<--parent-distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:332
+#: en/lb_config.1:334
 msgid ""
 "defines the parent distribution for derivatives of the resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:332
+#: en/lb_config.1:334
 #, no-wrap
 msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:334
+#: en/lb_config.1:336
 msgid ""
 "defines the parent debian-installer distribution for derivatives of the "
 "resulting live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:334
+#: en/lb_config.1:336
 #, no-wrap
 msgid "B<--dump>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:336
+#: en/lb_config.1:338
 msgid ""
 "prepares a report of the currently present live system configuration and the "
 "version of live-build used. This is useful to provide if you submit bug "
@@ -1844,26 +1838,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:336
+#: en/lb_config.1:338
 #, no-wrap
 msgid "B<--fdisk> fdisk|fdisk.dist"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:338
+#: en/lb_config.1:340
 msgid ""
 "sets the filename of the fdisk binary from the host system that should be "
 "used. This is autodetected and does generally not need any customization."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:338 en/live-build.7:38
+#: en/lb_config.1:340 en/live-build.7:38
 #, no-wrap
 msgid "B<--force>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:340
+#: en/lb_config.1:342
 msgid ""
 "forces re-execution of already run stages. Use only if you know what you are "
 "doing. It is generally safer to use B<lb clean> to clean up before re-"
@@ -1871,26 +1865,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:340
+#: en/lb_config.1:342
 #, no-wrap
 msgid "B<--grub-splash> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:342
+#: en/lb_config.1:344
 msgid ""
 "defines the name of an optional to be included splash screen graphic for the "
 "grub bootloader."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:342
+#: en/lb_config.1:344
 #, no-wrap
 msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:344
+#: en/lb_config.1:346
 msgid ""
 "defines the default options that will be appended to (almost) every gzip "
 "call during the building of the image. By default, this is set to --best to "
@@ -1899,13 +1893,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:344
+#: en/lb_config.1:346
 #, no-wrap
 msgid "B<--hooks> I<FILE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:346
+#: en/lb_config.1:348
 msgid ""
 "defines which hooks available in /usr/share/live/build/examples/hooks should "
 "be activated. Normally, there are no hooks executed. Make sure you know and "
@@ -1913,24 +1907,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:346
+#: en/lb_config.1:348
 #, no-wrap
 msgid "B<--hostname> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:348
+#: en/lb_config.1:350
 msgid "sets the hostname of the live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:348
+#: en/lb_config.1:350
 #, no-wrap
 msgid "B<--ignore-system-defaults>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:350
+#: en/lb_config.1:352
 msgid ""
 "B<lb config> by default reads system defaults from /etc/live/build.conf and /"
 "etc/live/build.d when generating a new live system config directory. This is "
@@ -1939,13 +1933,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:350
+#: en/lb_config.1:352
 #, no-wrap
 msgid "B<--includes> I<PATH|none>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:352
+#: en/lb_config.1:354
 msgid ""
 "sets the path to the includes that live-build is going to use, e.g. "
 "additional minimal documentation that you want to have on all live systems. "
@@ -1954,13 +1948,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:352
+#: en/lb_config.1:354
 #, no-wrap
 msgid "B<--initramfs> auto|none|live-boot|casper"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:354
+#: en/lb_config.1:356
 msgid ""
 "sets the name of package that contains the live system specific initramfs "
 "modification. By default, auto is used, which means that at build time of "
@@ -1971,26 +1965,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:354
+#: en/lb_config.1:356
 #, no-wrap
 msgid "B<--initramfs-compression> bzip2|gzip|lzma]"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:356
+#: en/lb_config.1:358
 msgid ""
 "defines the compression program to be used to compress the initramfs. "
 "Defaults to gzip."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:356
+#: en/lb_config.1:358
 #, no-wrap
 msgid "B<--interactive> shell"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:358
+#: en/lb_config.1:360
 msgid ""
 "defines if after the chroot stage and before the beginning of the binary "
 "stage, a interactive shell login should be spawned in the chroot in order to "
@@ -2004,24 +1998,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:358
+#: en/lb_config.1:360
 #, no-wrap
 msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:360
+#: en/lb_config.1:362
 msgid "defines options to pass to isohybrid."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:360
+#: en/lb_config.1:362
 #, no-wrap
 msgid "B<--iso-application> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:362
+#: en/lb_config.1:364
 msgid ""
 "sets the APPLICATION field in the header of a resulting CD/DVD image and "
 "defaults to \"Debian Live\" in debian mode, and to \"Emdebian Live\" in "
@@ -2029,13 +2023,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:362
+#: en/lb_config.1:364
 #, no-wrap
 msgid "B<--iso-preparer> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:364
+#: en/lb_config.1:366
 msgid ""
 "sets the PREPARER field in the header of a resulting CD/DVD image. By "
 "default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
@@ -2044,13 +2038,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:364
+#: en/lb_config.1:366
 #, no-wrap
 msgid "B<--iso-publisher> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:366
+#: en/lb_config.1:368
 msgid ""
 "sets the PUBLISHED field in the header of a resulting CD/DVD image. By "
 "default, this is set to 'Debian Live project; http:/live.debian.net/; debian-"
@@ -2059,13 +2053,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:366
+#: en/lb_config.1:368
 #, no-wrap
 msgid "B<--iso-volume> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:368
+#: en/lb_config.1:370
 msgid ""
 "sets the VOLUME field in the header of a resulting CD/DVD and defaults to "
 "'(I<MODE>) (I<DISTRIBUTION>) (I<DATE>)' whereas MODE is expanded to the name "
@@ -2074,13 +2068,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:368
+#: en/lb_config.1:370
 #, no-wrap
 msgid "B<--jffs2-eraseblock> I<SIZE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:370
+#: en/lb_config.1:372
 msgid ""
 "sets the eraseblock size for a JFFS2 (Second Journalling Flash File System) "
 "filesystem. The default is 64 KiB. If you use an erase block size different "
@@ -2090,26 +2084,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:370
+#: en/lb_config.1:372
 #, no-wrap
 msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:372
+#: en/lb_config.1:374
 msgid ""
 "sets the keyring package or additional keyring packages. By default this is "
 "set to debian-archive-keyring."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:372
+#: en/lb_config.1:374
 #, no-wrap
 msgid "-l|B<--language> I<LANGUAGE>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:374
+#: en/lb_config.1:376
 msgid ""
 "sets the language of a live system by installing l10n related packages. It "
 "doesn't enable generation of the correct locales through setting the right "
@@ -2117,26 +2111,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:374
+#: en/lb_config.1:376
 #, no-wrap
 msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:376
+#: en/lb_config.1:378
 msgid ""
 "sets the kernel flavours to be installed. Note that in case you specify more "
 "than that the first will be configured the default kernel that gets booted."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:376
+#: en/lb_config.1:378
 #, no-wrap
 msgid "B<--linux-packages> \"I<PACKAGES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:378
+#: en/lb_config.1:380
 msgid ""
 "sets the internal name of the kernel packages naming scheme. If you use "
 "debian kernel packages, you will not have to adjust it. If you decide to use "
@@ -2150,26 +2144,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:378
+#: en/lb_config.1:380
 #, no-wrap
 msgid "B<--losetup> losetup|losetup.orig"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:380
+#: en/lb_config.1:382
 msgid ""
 "sets the filename of the losetup binary from the host system that should be "
 "used. This is autodetected and does generally not need any customization."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:380
+#: en/lb_config.1:382
 #, no-wrap
 msgid "B<--memtest> memtest86+|memtest86|none"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:382
+#: en/lb_config.1:384
 msgid ""
 "defines if memtest, memtest86+ or no memory tester at all should be included "
 "as secondary bootloader configuration. This is only available on amd64 and "
@@ -2177,13 +2171,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:382
+#: en/lb_config.1:384
 #, no-wrap
 msgid "-m|B<--parent-mirror-bootstrap> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:384
+#: en/lb_config.1:386
 msgid ""
 "sets the location of the debian package mirror that should be used to "
 "bootstrap from. This defaults to http://ftp.de.debian.org/debian/ which may "
@@ -2191,13 +2185,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:384
+#: en/lb_config.1:386
 #, no-wrap
 msgid "B<--parent-mirror-chroot> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:386
+#: en/lb_config.1:388
 msgid ""
 "sets the location of the debian package mirror that will be used to fetch "
 "the packages in order to build the live system. By default, this is set to "
@@ -2205,13 +2199,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:386
+#: en/lb_config.1:388
 #, no-wrap
 msgid "B<--parent-mirror-chroot-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:388
+#: en/lb_config.1:390
 msgid ""
 "sets the location of the debian security package mirror that will be used to "
 "fetch the packages in order to build the live system. By default, this "
@@ -2219,13 +2213,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:388
+#: en/lb_config.1:390
 #, no-wrap
 msgid "B<--parent-mirror-chroot-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:390
+#: en/lb_config.1:392
 msgid ""
 "sets the location of the debian volatile package mirror that will be used to "
 "fetch packages in order to build the live system. By default, this is set to "
@@ -2233,13 +2227,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:390
+#: en/lb_config.1:392
 #, no-wrap
 msgid "B<--parent-mirror-chroot-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:392
+#: en/lb_config.1:394
 msgid ""
 "sets the location of the debian backports package mirror that will be used "
 "to fetch packages in order to build the live system. By default, this points "
@@ -2247,13 +2241,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:392
+#: en/lb_config.1:394
 #, no-wrap
 msgid "B<--parent-mirror-binary> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:394
+#: en/lb_config.1:396
 msgid ""
 "sets the location of the debian package mirror that should end up configured "
 "in the final image and which is the one a user would see and use. This has "
@@ -2263,13 +2257,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:394
+#: en/lb_config.1:396
 #, no-wrap
 msgid "B<--parent-mirror-binary-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:396
+#: en/lb_config.1:398
 msgid ""
 "sets the location of the debian security package mirror that should end up "
 "configured in the final image. By default, 'http://cdn.debian.net/debian-"
@@ -2277,13 +2271,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:396
+#: en/lb_config.1:398
 #, no-wrap
 msgid "B<--parent-mirror-binary-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:398
+#: en/lb_config.1:400
 msgid ""
 "sets the location of the debian volatile package mirror that should end up "
 "configured in the final image. By default, the value of --parent-mirror-"
@@ -2291,13 +2285,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:398
+#: en/lb_config.1:400
 #, no-wrap
 msgid "B<--parent-mirror-binary-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:400
+#: en/lb_config.1:402
 msgid ""
 "sets the location of the debian backports package mirror that should end up "
 "configured in the final image. By default, 'http://backports.debian.org/"
@@ -2305,13 +2299,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:400
+#: en/lb_config.1:402
 #, no-wrap
 msgid "B<--parent-mirror-debian-installer> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:402
+#: en/lb_config.1:404
 msgid ""
 "sets the location of the mirror that will be used to fetch the debian "
 "installer images. By default, this points to the same mirror used to build "
@@ -2319,13 +2313,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:402
+#: en/lb_config.1:404
 #, no-wrap
 msgid "B<--mirror-bootstrap> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:404
+#: en/lb_config.1:406
 msgid ""
 "sets the location of the debian package mirror that should be used to "
 "bootstrap the derivative from. This defaults to http://ftp.de.debian.org/"
@@ -2333,13 +2327,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:404
+#: en/lb_config.1:406
 #, no-wrap
 msgid "B<--mirror-chroot> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:406
+#: en/lb_config.1:408
 msgid ""
 "sets the location of the debian package mirror that will be used to fetch "
 "the packages of the derivative in order to build the live system. By "
@@ -2347,13 +2341,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:406
+#: en/lb_config.1:408
 #, no-wrap
 msgid "B<--mirror-chroot-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:408
+#: en/lb_config.1:410
 msgid ""
 "sets the location of the debian security package mirror that will be used to "
 "fetch the packages of the derivative in order to build the live system. By "
@@ -2361,13 +2355,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:408
+#: en/lb_config.1:410
 #, no-wrap
 msgid "B<--mirror-chroot-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:410
+#: en/lb_config.1:412
 msgid ""
 "sets the location of the debian volatile package mirror that will be used to "
 "fetch packages of the derivative in order to build the live system. By "
@@ -2375,13 +2369,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:410
+#: en/lb_config.1:412
 #, no-wrap
 msgid "B<--mirror-chroot-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:412
+#: en/lb_config.1:414
 msgid ""
 "sets the location of the debian backports package mirror that will be used "
 "to fetch packages of the derivative in order to build the live system. By "
@@ -2389,13 +2383,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:412
+#: en/lb_config.1:414
 #, no-wrap
 msgid "B<--mirror-binary> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:414
+#: en/lb_config.1:416
 msgid ""
 "sets the location of the derivative package mirror that should end up "
 "configured in the final image and which is the one a user would see and use. "
@@ -2405,52 +2399,52 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:414
+#: en/lb_config.1:416
 #, no-wrap
 msgid "B<--mirror-binary-security> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:416
+#: en/lb_config.1:418
 msgid ""
 "sets the location of the derivatives security package mirror that should end "
 "up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:416
+#: en/lb_config.1:418
 #, no-wrap
 msgid "B<--mirror-binary-volatile> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:418
+#: en/lb_config.1:420
 msgid ""
 "sets the location of the derivatives volatile package mirror that should end "
 "up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:418
+#: en/lb_config.1:420
 #, no-wrap
 msgid "B<--mirror-binary-backports> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:420
+#: en/lb_config.1:422
 msgid ""
 "sets the location of the derivatives backports package mirror that should "
 "end up configured in the final image."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:420
+#: en/lb_config.1:422
 #, no-wrap
 msgid "B<--mirror-debian-installer> I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:422
+#: en/lb_config.1:424
 msgid ""
 "sets the location of the mirror that will be used to fetch the debian "
 "installer images of the derivative. By default, this points to the same "
@@ -2458,52 +2452,65 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:422
+#: en/lb_config.1:424
 #, no-wrap
 msgid "B<--mode> debian|emdebian|progress|ubuntu"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:424
+#: en/lb_config.1:426
 msgid ""
 "defines a global mode to load project specific defaults. By default this is "
 "set to debian."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:424
+#: en/lb_config.1:426
+#, no-wrap
+msgid "B<--system> live|normal"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:428
+msgid ""
+"defines if the resulting system image should a live system or a normal, non-"
+"live system."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:428
 #, no-wrap
 msgid "B<--net-root-filesystem> nfs|cfs"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:426
+#: en/lb_config.1:430
 msgid ""
 "defines the filesystem that will be configured in the bootloader "
 "configuration for your netboot image. This defaults to nfs."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:426
+#: en/lb_config.1:430
 #, no-wrap
 msgid "B<--net-root-mountoptions> I<OPTIONS>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:428
+#: en/lb_config.1:432
 msgid ""
 "sets additional options for mounting the root filesystem in netboot images "
 "and is by default empty."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:428
+#: en/lb_config.1:432
 #, no-wrap
 msgid "B<--net-root-path> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:430
+#: en/lb_config.1:434
 msgid ""
 "sets the file path that will be configured in the bootloader configuration "
 "for your netboot image. This defaults to /srv/debian-live in debian mode and "
@@ -2512,13 +2519,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:430
+#: en/lb_config.1:434
 #, no-wrap
 msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:432
+#: en/lb_config.1:436
 msgid ""
 "sets the IP or hostname that will be configured in the bootloader "
 "configuration for the root filesystem of your netboot image. This defaults "
@@ -2526,38 +2533,38 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:432
+#: en/lb_config.1:436
 #, no-wrap
 msgid "B<--net-cow-filesystem> nfs|cfs"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:434
+#: en/lb_config.1:438
 msgid ""
 "defines the filesystem type for the copy-on-write layer and defaults to nfs."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:434
+#: en/lb_config.1:438
 #, no-wrap
 msgid "B<--net-cow-mountoptions> I<OPTIONS>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:436
+#: en/lb_config.1:440
 msgid ""
 "sets additional options for mounting the copy-on-write layer in netboot "
 "images and is by default empty."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:436
+#: en/lb_config.1:440
 #, no-wrap
 msgid "B<--net-cow-path> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:438
+#: en/lb_config.1:442
 msgid ""
 "defines the path to client writable filesystem. Anywhere that "
 "I<client_mac_address> is specified in the path live-boot will substitute the "
@@ -2565,28 +2572,28 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:441
+#: en/lb_config.1:445
 msgid "Example:"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:443
+#: en/lb_config.1:447
 msgid "/export/hosts/client_mac_address"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:445
+#: en/lb_config.1:449
 msgid "/export/hosts/00-16-D3-33-92-E8"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:445
+#: en/lb_config.1:449
 #, no-wrap
 msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:447
+#: en/lb_config.1:451
 msgid ""
 "sets the IP or hostname that will be configured in the bootloader "
 "configuration for the copy-on-write filesystem of your netboot image and is "
@@ -2594,13 +2601,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:447
+#: en/lb_config.1:451
 #, no-wrap
 msgid "B<--net-tarball> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:449
+#: en/lb_config.1:453
 msgid ""
 "defines if a compressed tarball should be created. Disabling this options "
 "leads to no tarball at all, the plain binary directory is considered the "
@@ -2608,13 +2615,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:449
+#: en/lb_config.1:453
 #, no-wrap
 msgid "-p|B<--package-lists> I<LIST>|\"I<LISTS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:451
+#: en/lb_config.1:455
 msgid ""
 "defines which lists available in /usr/share/live/build/package-lists should "
 "be used. By default, this is set to standard. Note that in case you have "
@@ -2624,37 +2631,37 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:451 en/live-build.7:40
+#: en/lb_config.1:455 en/live-build.7:40
 #, no-wrap
 msgid "B<--quiet>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:453
+#: en/lb_config.1:457
 msgid "reduces the verbosity of messages output by B<lb build>."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:453
+#: en/lb_config.1:457
 #, no-wrap
 msgid "B<--archives> I<ARCHIVE>|\"I<ARCHIVES>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:455
+#: en/lb_config.1:459
 msgid ""
 "enables one of available third-party archive configurations in /usr/share/"
 "live/build/archives."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:455
+#: en/lb_config.1:459
 #, no-wrap
 msgid "B<--root-command> sudo"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:457
+#: en/lb_config.1:461
 msgid ""
 "controls if live-build should use sudo internally to build the live image. "
 "Note that this is not well tested and that you should, when relying on sudo, "
@@ -2662,13 +2669,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:457
+#: en/lb_config.1:461
 #, no-wrap
 msgid "B<--use-fakeroot> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:459
+#: en/lb_config.1:463
 msgid ""
 "controls if live-build should utilize fakeroot and fakechroot to try and "
 "avoid requiring root privillages where possible. By default, this option is "
@@ -2676,13 +2683,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:459
+#: en/lb_config.1:463
 #, no-wrap
 msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:461
+#: en/lb_config.1:465
 msgid ""
 "defines which package archive areas of a debian packages archive should be "
 "used for configured debian package mirrors. By default, this is set to main. "
@@ -2692,26 +2699,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:461
+#: en/lb_config.1:465
 #, no-wrap
 msgid "B<--security> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:463
+#: en/lb_config.1:467
 msgid ""
 "defines if the security repositories specified in the security mirror "
 "options should be used or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:463
+#: en/lb_config.1:467
 #, no-wrap
 msgid "B<--source> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:465
+#: en/lb_config.1:469
 msgid ""
 "defines if a corresponding source image to the binary image should be build. "
 "By default this is false because most people do not require this and would "
@@ -2721,50 +2728,50 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:465
+#: en/lb_config.1:469
 #, no-wrap
 msgid "-s|B<--source-images> iso|net|tar|hdd"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:467
+#: en/lb_config.1:471
 msgid "defines the image type for the source image. Default is tar."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:467
+#: en/lb_config.1:471
 #, no-wrap
 msgid "B<--swap-file-path> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:469
+#: en/lb_config.1:473
 msgid ""
 "defines the path to a swap file to create in the binary image. Default is "
 "not to create a swap file."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:469
+#: en/lb_config.1:473
 #, no-wrap
 msgid "B<--swap-file-size> I<MB>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:471
+#: en/lb_config.1:475
 msgid ""
 "defines what size in megabytes the swap file should be, if one is to be "
 "created. Default is 512MB."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:471
+#: en/lb_config.1:475
 #, no-wrap
 msgid "B<--syslinux-theme> I<THEME_SUFFIX>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:473
+#: en/lb_config.1:477
 msgid ""
 "defines the syslinux theme to use. The theme suffix is the name of a "
 "directory in /usr/share/syslinux/themes/ provided by a package named "
@@ -2773,79 +2780,79 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:473
+#: en/lb_config.1:477
 #, no-wrap
 msgid "B<--tasksel> apt|aptitude|tasksel"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:475
+#: en/lb_config.1:479
 msgid ""
 "selects which program is used to install tasks. By default, this is set to "
 "tasksel."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:475
+#: en/lb_config.1:479
 #, no-wrap
 msgid "B<--templates> I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:477
+#: en/lb_config.1:481
 msgid ""
 "sets the path to the templates that live-build is going to use, e.g. for "
 "bootloaders. By default, this is set to /usr/share/live/build/templates/."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:477
+#: en/lb_config.1:481
 #, no-wrap
-msgid "B<--virtual-root-size> MB"
+msgid "B<--hdd-size> MB"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:479
+#: en/lb_config.1:483
 msgid ""
-"defines what size the virtual-hdd image should be. Note that although the "
-"default is set to 10000 (= 10GB), it will not need 10GB space on your "
-"harddisk as the files are created as sparse files."
+"defines what size the hdd image should be. Note that although the default is "
+"set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the "
+"files are created as sparse files."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:479
+#: en/lb_config.1:483
 #, no-wrap
 msgid "B<--volatile> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:481
+#: en/lb_config.1:485
 msgid ""
 "defines if debian volatile package archives should be included in the image "
 "or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:481
+#: en/lb_config.1:485
 #, no-wrap
 msgid "B<--backports> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:483
+#: en/lb_config.1:487
 msgid ""
 "defines if debian backports package archives should be included in the image "
 "or not."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:483
+#: en/lb_config.1:487
 #, no-wrap
 msgid "B<--exposed-root> true|false"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:485
+#: en/lb_config.1:489
 msgid ""
 "defines whether to expose the root filesystem as read only and not covered "
 "by the union filesystem. This has useful implications for certain speciality "
@@ -2853,48 +2860,48 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:485
+#: en/lb_config.1:489
 #, no-wrap
 msgid "B<--username> I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:487
+#: en/lb_config.1:491
 msgid "sets the name of the account of the default user in the live system."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:487 en/live-build.7:42
+#: en/lb_config.1:491 en/live-build.7:42
 #, no-wrap
 msgid "B<--verbose>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:489
+#: en/lb_config.1:493
 msgid "increases the verbosity of messages output by B<lb build>."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:489
+#: en/lb_config.1:493
 #, no-wrap
 msgid "B<--win32-loader true|false>"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:492
+#: en/lb_config.1:496
 msgid "defines if win32-loader should be included in the binary image or not."
 msgstr ""
 
 #. type: SH
-#: en/lb_config.1:493
+#: en/lb_config.1:497
 #, no-wrap
 msgid "ENVIRONMENT"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:496
+#: en/lb_config.1:500
 msgid ""
 "Currently, command line switches can also be specified through the "
 "corresponding environment variable. However, this generally should not be "
@@ -2908,20 +2915,20 @@ msgstr ""
 
 #.  FIXME
 #. type: IP
-#: en/lb_config.1:500
+#: en/lb_config.1:504
 #, no-wrap
 msgid "B<auto/config>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:501
+#: en/lb_config.1:505
 #, no-wrap
 msgid "B</etc/live/build.conf, /etc/live/build.d>"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/lb_config.1:504
+#: en/lb_config.1:508
 msgid ""
 "An optional, global configuration file for B<lb config> variables. It is "
 "useful to specify a few system wide defaults, like "
@@ -2930,11 +2937,11 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:509 en/live-build.7:233
+#: en/lb_config.1:513 en/live-build.7:231
 msgid "I<live-boot>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:511 en/live-build.7:235
+#: en/lb_config.1:515 en/live-build.7:233
 msgid "I<live-config>(7)"
 msgstr ""
diff --git a/manpages/pot/lb_local.1.pot b/manpages/pot/lb_local.1.pot
index 41b4aac..7596513 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_source.1.pot b/manpages/pot/lb_source.1.pot
index 51a9845..a7c1226 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/lb_source_checksums.1.pot b/manpages/pot/lb_source_checksums.1.pot
index fba6dd6..5b26598 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_debian-live.1.pot b/manpages/pot/lb_source_debian-live.1.pot
index 64dd8d2..c4b92e8 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_debian.1.pot b/manpages/pot/lb_source_debian.1.pot
index 715d007..725dc2f 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_disk.1.pot b/manpages/pot/lb_source_disk.1.pot
index 96f1857..8a57ab0 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_hdd.1.pot b/manpages/pot/lb_source_hdd.1.pot
index 049b590..c96870b 100644
--- a/manpages/pot/lb_source_hdd.1.pot
+++ b/manpages/pot/lb_source_hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_iso.1.pot b/manpages/pot/lb_source_iso.1.pot
index b775388..b4ed2c4 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_net.1.pot b/manpages/pot/lb_source_net.1.pot
index 13a2dd5..de9b254 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_tar.1.pot b/manpages/pot/lb_source_tar.1.pot
index 4cd2b87..fddb2aa 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_source_virtual-hdd.1.pot b/manpages/pot/lb_source_virtual-hdd.1.pot
index 9cdda36..5cc204a 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -429,15 +424,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -463,15 +457,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -499,15 +492,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -533,15 +525,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -570,15 +561,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -604,15 +594,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
@@ -639,13 +628,13 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-includes.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_hdd.1:19 en/lb_source_iso.1:19
-#: en/lb_source_net.1:19 en/lb_source_tar.1:19 en/lb_source_virtual-hdd.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_hdd.1:19
+#: en/lb_source_iso.1:19 en/lb_source_net.1:19 en/lb_source_tar.1:19
+#: en/lb_source_virtual-hdd.1:19
 #, no-wrap
 msgid "B<n/a>"
 msgstr ""
diff --git a/manpages/pot/lb_testroot.1.pot b/manpages/pot/lb_testroot.1.pot
index a23039d..3d0742b 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -336,15 +334,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -370,15 +367,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.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:507
-#: 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_hdd.1:23 en/lb_source_iso.1:23
-#: en/lb_source_net.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
-#: en/lb_testroot.1:26
+#: 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_hdd.1:23
+#: en/lb_source_iso.1:23 en/lb_source_net.1:23 en/lb_source_tar.1:23
+#: en/lb_source_virtual-hdd.1:23 en/lb_testroot.1:26
 msgid "I<live-build>(7)"
 msgstr ""
 
@@ -403,15 +399,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -436,15 +431,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -470,15 +464,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -506,15 +499,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -540,15 +532,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -577,15 +568,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -611,15 +601,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
diff --git a/manpages/pot/live-build.7.pot b/manpages/pot/live-build.7.pot
index 5fa4b74..4bd7981 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-09-28 07:33+0300\n"
+"POT-Creation-Date: 2011-09-30 14: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"
@@ -36,11 +36,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -68,16 +68,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2011-09-28"
+msgid "2011-09-30"
 msgstr ""
 
 #. type: TH
@@ -100,16 +100,16 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a33-1"
+msgid "3.0~a34-1"
 msgstr ""
 
 #. type: TH
@@ -132,11 +132,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
 #: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
 #: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
-#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
-#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1
-#: en/lb_chroot_sysv-rc.1:1 en/lb_chroot_task-lists.1:1
-#: en/lb_chroot_upstart.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_local.1:1
-#: en/lb_source.1:1 en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
+#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
+#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
+#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
+#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
+#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
 #: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
@@ -164,11 +164,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
 #: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
 #: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
-#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
-#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3
-#: en/lb_chroot_sysv-rc.1:3 en/lb_chroot_task-lists.1:3
-#: en/lb_chroot_upstart.1:3 en/lb_clean.1:3 en/lb_config.1:3 en/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_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
+#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
+#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
+#: en/lb_config.1:3 en/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_hdd.1:3
 #: en/lb_source_iso.1:3 en/lb_source_net.1:3 en/lb_source_tar.1:3
 #: en/lb_source_virtual-hdd.1:3 en/lb_testroot.1:3 en/live-build.7:3
@@ -196,11 +196,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
 #: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
 #: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
-#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
-#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6
-#: en/lb_chroot_sysv-rc.1:6 en/lb_chroot_task-lists.1:6
-#: en/lb_chroot_upstart.1:6 en/lb_clean.1:6 en/lb_config.1:6 en/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_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
+#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
+#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
+#: en/lb_config.1:6 en/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_hdd.1:6
 #: en/lb_source_iso.1:6 en/lb_source_net.1:6 en/lb_source_tar.1:6
 #: en/lb_source_virtual-hdd.1:6 en/lb_testroot.1:6 en/live-build.7:6
@@ -228,11 +228,11 @@ msgstr ""
 #: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
 #: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
 #: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
-#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
-#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9
-#: en/lb_chroot_sysv-rc.1:9 en/lb_chroot_task-lists.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:241 en/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_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
+#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
+#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
+#: en/lb_config.1:243 en/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_hdd.1:9
 #: en/lb_source_iso.1:9 en/lb_source_net.1:9 en/lb_source_tar.1:9
 #: en/lb_source_virtual-hdd.1:9 en/lb_testroot.1:9 en/live-build.7:11
@@ -261,15 +261,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.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:250
-#: 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_hdd.1:14 en/lb_source_iso.1:14
-#: en/lb_source_net.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
-#: en/lb_testroot.1:18 en/live-build.7:20
+#: 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_hdd.1:14
+#: en/lb_source_iso.1:14 en/lb_source_net.1:14 en/lb_source_tar.1:14
+#: en/lb_source_virtual-hdd.1:14 en/lb_testroot.1:18 en/live-build.7:20
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
@@ -295,15 +294,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.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:498
-#: 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_hdd.1:17 en/lb_source_iso.1:17
-#: en/lb_source_net.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
-#: en/lb_testroot.1:21 en/live-build.7:227
+#: 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_hdd.1:17
+#: en/lb_source_iso.1:17 en/lb_source_net.1:17 en/lb_source_tar.1:17
+#: en/lb_source_virtual-hdd.1:17 en/lb_testroot.1:21 en/live-build.7:225
 #, no-wrap
 msgid "FILES"
 msgstr ""
@@ -329,15 +327,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.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:505
-#: 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_hdd.1:21 en/lb_source_iso.1:21
-#: en/lb_source_net.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
-#: en/lb_testroot.1:24 en/live-build.7:231
+#: 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_hdd.1:21
+#: en/lb_source_iso.1:21 en/lb_source_net.1:21 en/lb_source_tar.1:21
+#: en/lb_source_virtual-hdd.1:21 en/lb_testroot.1:24 en/live-build.7:229
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
@@ -363,15 +360,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.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_hdd.1:25 en/lb_source_iso.1:25
-#: en/lb_source_net.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
-#: en/lb_testroot.1:28 en/live-build.7:237
+#: 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: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_hdd.1:25
+#: en/lb_source_iso.1:25 en/lb_source_net.1:25 en/lb_source_tar.1:25
+#: en/lb_source_virtual-hdd.1:25 en/lb_testroot.1:28 en/live-build.7:235
 msgid "This program is a part of live-build."
 msgstr ""
 
@@ -396,15 +392,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.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_hdd.1:26 en/lb_source_iso.1:26
-#: en/lb_source_net.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
-#: en/lb_testroot.1:29 en/live-build.7:238
+#: 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: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_hdd.1:26
+#: en/lb_source_iso.1:26 en/lb_source_net.1:26 en/lb_source_tar.1:26
+#: en/lb_source_virtual-hdd.1:26 en/lb_testroot.1:29 en/live-build.7:236
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
@@ -430,15 +425,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.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_hdd.1:28 en/lb_source_iso.1:28
-#: en/lb_source_net.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
-#: en/lb_testroot.1:31 en/live-build.7:240
+#: 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: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_hdd.1:28
+#: en/lb_source_iso.1:28 en/lb_source_net.1:28 en/lb_source_tar.1:28
+#: en/lb_source_virtual-hdd.1:28 en/lb_testroot.1:31 en/live-build.7:238
 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 "
@@ -466,15 +460,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.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_hdd.1:29 en/lb_source_iso.1:29
-#: en/lb_source_net.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
-#: en/lb_testroot.1:32 en/live-build.7:241
+#: 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: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_hdd.1:29
+#: en/lb_source_iso.1:29 en/lb_source_net.1:29 en/lb_source_tar.1:29
+#: en/lb_source_virtual-hdd.1:29 en/lb_testroot.1:32 en/live-build.7:239
 #, no-wrap
 msgid "BUGS"
 msgstr ""
@@ -500,15 +493,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.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_hdd.1:31 en/lb_source_iso.1:31
-#: en/lb_source_net.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
-#: en/lb_testroot.1:34 en/live-build.7:243
+#: 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: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_hdd.1:31
+#: en/lb_source_iso.1:31 en/lb_source_net.1:31 en/lb_source_tar.1:31
+#: en/lb_source_virtual-hdd.1:31 en/lb_testroot.1:34 en/live-build.7:241
 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 "
@@ -537,15 +529,14 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.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_hdd.1:32 en/lb_source_iso.1:32
-#: en/lb_source_net.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
-#: en/lb_testroot.1:35 en/live-build.7:244
+#: 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: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_hdd.1:32
+#: en/lb_source_iso.1:32 en/lb_source_net.1:32 en/lb_source_tar.1:32
+#: en/lb_source_virtual-hdd.1:32 en/lb_testroot.1:35 en/live-build.7:242
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
@@ -571,51 +562,50 @@ msgstr ""
 #: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.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_hdd.1:33 en/lb_source_iso.1:33
-#: en/lb_source_net.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
-#: en/lb_testroot.1:36 en/live-build.7:245
+#: 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: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_hdd.1:33
+#: en/lb_source_iso.1:33 en/lb_source_net.1:33 en/lb_source_tar.1:33
+#: en/lb_source_virtual-hdd.1:33 en/lb_testroot.1:36 en/live-build.7:243
 msgid ""
 "live-build was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
 "the Debian project."
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:326 en/live-build.7:36
+#: en/lb_config.1:328 en/live-build.7:36
 #, no-wrap
 msgid "B<--debug>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:338 en/live-build.7:38
+#: en/lb_config.1:340 en/live-build.7:38
 #, no-wrap
 msgid "B<--force>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:451 en/live-build.7:40
+#: en/lb_config.1:455 en/live-build.7:40
 #, no-wrap
 msgid "B<--quiet>"
 msgstr ""
 
 #. type: IP
-#: en/lb_config.1:487 en/live-build.7:42
+#: en/lb_config.1:491 en/live-build.7:42
 #, no-wrap
 msgid "B<--verbose>"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:509 en/live-build.7:233
+#: en/lb_config.1:513 en/live-build.7:231
 msgid "I<live-boot>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/lb_config.1:511 en/live-build.7:235
+#: en/lb_config.1:515 en/live-build.7:233
 msgid "I<live-config>(7)"
 msgstr ""
 
@@ -1192,460 +1182,449 @@ msgstr ""
 #. type: IP
 #: en/live-build.7:130
 #, no-wrap
-msgid "B<lb_chroot_preseed>(1)"
-msgstr ""
-
-#. type: Plain text
-#: en/live-build.7:132
-msgid "use debconf preseeding file"
-msgstr ""
-
-#. type: IP
-#: en/live-build.7:132
-#, no-wrap
 msgid "B<lb_chroot_proc>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:134
+#: en/live-build.7:132
 msgid "mount /proc"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:134
+#: en/live-build.7:132
 #, no-wrap
 msgid "B<lb_chroot_resolv>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:136
+#: en/live-build.7:134
 msgid "manage /etc/resolv.conf"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:136
+#: en/live-build.7:134
 #, no-wrap
 msgid "B<lb_chroot_selinuxfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:138
+#: en/live-build.7:136
 msgid "mount /selinux"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:138
+#: en/live-build.7:136
 #, no-wrap
 msgid "B<lb_chroot_archives>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:140
+#: en/live-build.7:138
 msgid "manage /etc/apt/sources.list"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:140
+#: en/live-build.7:138
 #, no-wrap
 msgid "B<lb_chroot_sysfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:142
+#: en/live-build.7:140
 msgid "mount /sys"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:142
+#: en/live-build.7:140
 #, no-wrap
 msgid "B<lb_chroot_sysv-rc>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:144
+#: en/live-build.7:142
 msgid "manage /usr/sbin/policy-rc.d"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:144
+#: en/live-build.7:142
 #, no-wrap
 msgid "B<lb_chroot_task-lists>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:146
+#: en/live-build.7:144
 msgid "install task lists into chroot"
 msgstr ""
 
 #. type: SS
-#: en/live-build.7:146
+#: en/live-build.7:144
 #, no-wrap
 msgid "Binary commands"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:147
+#: en/live-build.7:145
 #, no-wrap
 msgid "B<lb_binary_chroot>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:149
+#: en/live-build.7:147
 msgid "copy chroot into chroot"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:149
+#: en/live-build.7:147
 #, no-wrap
 msgid "B<lb_binary_debian-installer>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:151
+#: en/live-build.7:149
 msgid "install debian-installer into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:151
+#: en/live-build.7:149
 #, no-wrap
 msgid "B<lb_binary_disk>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:153
+#: en/live-build.7:151
 msgid "install disk information into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:153
+#: en/live-build.7:151
 #, no-wrap
 msgid "B<lb_binary_grub>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:155
+#: en/live-build.7:153
 msgid "installs grub into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:155
+#: en/live-build.7:153
 #, no-wrap
 msgid "B<lb_binary_grub2>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:157
+#: en/live-build.7:155
 msgid "installs grub2 into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:157
+#: en/live-build.7:155
 #, no-wrap
 msgid "B<lb_binary_includes>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:159 en/live-build.7:167
+#: en/live-build.7:157 en/live-build.7:165
 msgid "copy files into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:159
+#: en/live-build.7:157
 #, no-wrap
 msgid "B<lb_binary_iso>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:161
+#: en/live-build.7:159
 msgid "build iso binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:161
+#: en/live-build.7:159
 #, no-wrap
 msgid "B<lb_binary_linux-image>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:163
+#: en/live-build.7:161
 msgid "install linux-image into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:163
+#: en/live-build.7:161
 #, no-wrap
 msgid "B<lb_binary_local-hooks>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:165
+#: en/live-build.7:163
 msgid "execute local hooks in binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:165
+#: en/live-build.7:163
 #, no-wrap
 msgid "B<lb_binary_local-includes>(1)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:167
+#: en/live-build.7:165
 #, no-wrap
 msgid "B<lb_binary_local-packagelists>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:169
+#: en/live-build.7:167
 msgid "install local package lists into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:169
+#: en/live-build.7:167
 #, no-wrap
 msgid "B<lb_binary_manifest>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:171
+#: en/live-build.7:169
 msgid "create manifest"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:171
+#: en/live-build.7:169
 #, no-wrap
 msgid "B<lb_binary_checksums>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:173
+#: en/live-build.7:171
 msgid "create binary checksums (md5, sha1, and/or sha256)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:173
+#: en/live-build.7:171
 #, no-wrap
 msgid "B<lb_binary_memtest>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:175
+#: en/live-build.7:173
 msgid "installs a memtest into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:175
+#: en/live-build.7:173
 #, no-wrap
 msgid "B<lb_binary_net>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:177
+#: en/live-build.7:175
 msgid "build netboot binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:177
+#: en/live-build.7:175
 #, no-wrap
 msgid "B<lb_binary_rootfs>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:179
+#: en/live-build.7:177
 msgid "build rootfs image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:179
+#: en/live-build.7:177
 #, no-wrap
 msgid "B<lb_binary_silo>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:181
+#: en/live-build.7:179
 msgid "installs silo into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:181
+#: en/live-build.7:179
 #, no-wrap
 msgid "B<lb_binary_syslinux>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:183
+#: en/live-build.7:181
 msgid "installs syslinux into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:183
+#: en/live-build.7:181
 #, no-wrap
 msgid "B<lb_binary_tar>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:185
+#: en/live-build.7:183
 msgid "build harddisk binary image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:185
+#: en/live-build.7:183
 #, no-wrap
 msgid "B<lb_binary_hdd>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:187
+#: en/live-build.7:185
 msgid "build binary hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:187
+#: en/live-build.7:185
 #, no-wrap
 msgid "B<lb_binary_virtual-hdd>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:189
+#: en/live-build.7:187
 msgid "build binary virtual-hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:189
+#: en/live-build.7:187
 #, no-wrap
 msgid "B<lb_binary_win32-loader>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:191
+#: en/live-build.7:189
 msgid "installs win32-loader into binary"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:191
+#: en/live-build.7:189
 #, no-wrap
 msgid "B<lb_binary_yaboot>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:193
+#: en/live-build.7:191
 msgid "installs yaboot into binary"
 msgstr ""
 
 #. type: SS
-#: en/live-build.7:193
+#: en/live-build.7:191
 #, no-wrap
 msgid "Source commands"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:194
+#: en/live-build.7:192
 #, no-wrap
 msgid "B<lb_source_debian>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:196
+#: en/live-build.7:194
 msgid "download sources"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:196
+#: en/live-build.7:194
 #, no-wrap
 msgid "B<lb_source_debian-live>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:198
+#: en/live-build.7:196
 msgid "copy debian-live config into source"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:198
+#: en/live-build.7:196
 #, no-wrap
 msgid "B<lb_source_disk>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:200
+#: en/live-build.7:198
 msgid "install disk information into source"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:200
+#: en/live-build.7:198
 #, no-wrap
 msgid "B<lb_source_iso>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:202
+#: en/live-build.7:200
 msgid "build iso source image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:202
+#: en/live-build.7:200
 #, no-wrap
 msgid "B<lb_source_checksums>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:204
+#: en/live-build.7:202
 msgid "create source checksums (md5, sha1, and/or sha256)"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:204
+#: en/live-build.7:202
 #, no-wrap
 msgid "B<lb_source_net>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:206
+#: en/live-build.7:204
 msgid "build source net image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:206
+#: en/live-build.7:204
 #, no-wrap
 msgid "B<lb_source_tar>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:208
+#: en/live-build.7:206
 msgid "build source tarball"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:208
+#: en/live-build.7:206
 #, no-wrap
 msgid "B<lb_source_hdd>(1)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:210
+#: en/live-build.7:208
 msgid "build source hdd image"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:210
+#: en/live-build.7:208
 #, no-wrap
 msgid "B<lb_source_virtual-hdd>(1)"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:213
+#: en/live-build.7:211
 msgid "build source virtual-hdd image"
 msgstr ""
 
 #. type: SH
-#: en/live-build.7:214
+#: en/live-build.7:212
 #, no-wrap
 msgid "CONFIG FILES"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:217
+#: en/live-build.7:215
 msgid ""
 "Many live-build commands make use of files in the I<config/> directory to "
 "control what they do. Besides the common I<config/common>, which is used by "
@@ -1657,7 +1636,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:219
+#: en/live-build.7:217
 msgid ""
 "For example, lb_bootstrap_debootstrap uses files named config/bootstrap and "
 "config/bootstrap_debootstrap to read the options it will use. See the man "
@@ -1668,7 +1647,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:221
+#: en/live-build.7:219
 msgid ""
 "Note that live-build will respect environment variables which are present in "
 "the context of the shell it is running. If variables can be read from config "
@@ -1679,7 +1658,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-build.7:223
+#: en/live-build.7:221
 msgid ""
 "In some rare cases, you may want to have different versions of these files "
 "for different architectures or distributions. If files named config/stage."
@@ -1692,7 +1671,7 @@ msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-build.7:226
+#: en/live-build.7:224
 msgid ""
 "All config files are shell scripts which are sourced by a live-build "
 "program. That means they have to follow the normal shell syntax. You can "
@@ -1700,13 +1679,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:228
+#: en/live-build.7:226
 #, no-wrap
 msgid "B</etc/live/build.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-build.7:229
+#: en/live-build.7:227
 #, no-wrap
 msgid "B</etc/live/build.d/>"
 msgstr ""
diff --git a/scripts/build/lb_binary_chroot b/scripts/build/lb_binary_chroot
index f5ac80f..388f84d 100755
--- a/scripts/build/lb_binary_chroot
+++ b/scripts/build/lb_binary_chroot
@@ -42,7 +42,7 @@ Create_lockfile .lock
 if [ -f chroot/proc/version ]
 then
 	if [ "${LB_USE_FAKEROOT}" != "true" ]
-then
+	then
 		${LB_ROOT_COMMAND} umount chroot/proc
 	else
 		rm -rf chroot/proc
@@ -85,7 +85,7 @@ ${LB_ROOT_COMMAND} rm -rf chroot/chroot
 ${LB_ROOT_COMMAND} rm -rf chroot.tmp
 
 # Copying new chroot
-if [ -d cache/stages_bootstrap ] && [ "${LB_CHROOT_FILESYSTEM}" != "plain" ]
+if [ -d cache/stages_bootstrap ] && [ "${LB_CHROOT_FILESYSTEM}" != "none" ]
 then
 	${LB_ROOT_COMMAND} mv chroot chroot.tmp
 	${LB_ROOT_COMMAND} cp -a cache/stages_bootstrap chroot
diff --git a/scripts/build/lb_binary_rootfs b/scripts/build/lb_binary_rootfs
index 692a28d..280cd1a 100755
--- a/scripts/build/lb_binary_rootfs
+++ b/scripts/build/lb_binary_rootfs
@@ -284,7 +284,7 @@ case "${LB_CHROOT_FILESYSTEM}" in
 		Save_cache cache/packages_binary
 		;;
 
-	plain)
+	none)
 		if [ -d binary/${INITFS}/filesystem.dir ]
 		then
 			rm -rf binary/${INITFS}/filesystem.dir
diff --git a/scripts/build/lb_binary_syslinux b/scripts/build/lb_binary_syslinux
index 8fbdee6..da69b28 100755
--- a/scripts/build/lb_binary_syslinux
+++ b/scripts/build/lb_binary_syslinux
@@ -53,6 +53,12 @@ case "${LB_BUILD_WITH_CHROOT}" in
 		Check_package chroot/usr/bin/syslinux syslinux
 		Check_package chroot/usr/share/syslinux/themes/${LB_SYSLINUX_THEME} syslinux-themes-${LB_SYSLINUX_THEME}
 
+		case "${LB_MODE}" in
+			ubuntu)
+				Check_package chroot/usr/share/gfxboot-theme-ubuntu/bootlogo.tar.gz gfxboot-theme-ubuntu
+				;;
+		esac
+
 		# Restoring cache
 		Restore_cache cache/packages_binary
 
@@ -86,12 +92,25 @@ case "${LB_BUILD_WITH_CHROOT}" in
 	true)
 		# Copy in two steps since the theme can have absolute symlinks and would therefore not be dereferenced correctly
 		Chroot chroot "cp -aL /usr/share/syslinux/themes/${LB_SYSLINUX_THEME}/${_BOOTLOADER}-live /root/tmp"
+
+		case "${LB_MODE}" in
+			ubuntu)
+				Chroot chroot "tar xfz /usr/share/gfxboot-theme-ubuntu/bootlogo.tar.gz -C /root/tmp"
+				;;
+		esac
+
 		mv chroot/root/tmp/* ${_SUFFIX}
 		rmdir chroot/root/tmp
 		;;
 
 	false)
 		cp -aL /usr/share/syslinux/themes/${LB_SYSLINUX_THEME}/${_BOOTLOADER}-live/* ${_SUFFIX}
+
+		case "${LB_MODE}" in
+			ubuntu)
+				tar xfz /usr/share/gfxboot-theme-ubuntu/bootlogo.tar.gz -C ${_SUFFIX}
+				;;
+		esac
 		;;
 esac
 
diff --git a/scripts/build/lb_binary_virtual-hdd b/scripts/build/lb_binary_virtual-hdd
index 5cbea89..d0aa6cf 100755
--- a/scripts/build/lb_binary_virtual-hdd
+++ b/scripts/build/lb_binary_virtual-hdd
@@ -65,7 +65,7 @@ then
 fi
 
 Echo_message "Creating virtual disk image..."
-dd if=/dev/zero of=binary-virtual.img bs=1024k count=0 seek=${LB_VIRTUAL_ROOT_SIZE}
+dd if=/dev/zero of=binary-virtual.img bs=1024k count=0 seek=${LB_HDD_SIZE}
 
 if [ "${LB_BUILD_WITH_CHROOT}" = "true" ]
 then
diff --git a/scripts/build/lb_chroot b/scripts/build/lb_chroot
index 5711244..8f28c84 100755
--- a/scripts/build/lb_chroot
+++ b/scripts/build/lb_chroot
@@ -54,7 +54,6 @@ lb chroot_archives chroot install ${*}
 # Customizing chroot
 lb chroot_linux-image ${*}
 lb chroot_preseed ${*}
-lb chroot_local-preseed ${*}
 
 for _PASS in install live
 do
diff --git a/scripts/build/lb_chroot_live-packages b/scripts/build/lb_chroot_live-packages
index 31734a8..ef8292e 100755
--- a/scripts/build/lb_chroot_live-packages
+++ b/scripts/build/lb_chroot_live-packages
@@ -36,25 +36,22 @@ Check_lockfile .lock
 # Creating lock file
 Create_lockfile .lock
 
-_PACKAGES=""
-
-# Queue installation of linux-image and ${LB_INITRAMFS}
-if [ "${LB_INITRAMFS}" != "none" ]
+# Queue installation of live-boot
+if [ -n "${LB_INITRAMFS}" ] && [ "${LB_INITRAMFS}" != "none" ]
 then
 	_PACKAGES="${LB_INITRAMFS}"
 fi
 
 # Queue installation of live-config
-if [ "${LB_INITSYSTEM}" != "none" ]
+if [ -n "${LB_INITSYSTEM}" ] && [ "${LB_INITSYSTEM}" != "none" ]
 then
 	_PACKAGES="${_PACKAGES} live-config live-config-${LB_INITSYSTEM}"
 fi
 
 # Do initsystem specific hacks
-if [ "${LB_INITSYSTEM}" != "sysvinit" ]
+if [ -n "${LB_INITSYSTEM}" ] && [ "${LB_INITSYSTEM}" != "sysvinit" ]
 then
 	# lets see if we still need the squeeze's "pre init system policy discussion" hack:
-
 	IS_SYSVINIT_ESSENTIAL="$(Chroot chroot dpkg-query --show --showformat='${Essential}\n' sysvinit)"
 	RC="$?"
 
diff --git a/scripts/build/lb_chroot_local-preseed b/scripts/build/lb_chroot_local-preseed
deleted file mode 100755
index d37f5eb..0000000
--- a/scripts/build/lb_chroot_local-preseed
+++ /dev/null
@@ -1,65 +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 preseed 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 preseeds..."
-
-# Requiring stage file
-Require_stagefile .stage/config .stage/bootstrap
-
-# Checking stage file
-Check_stagefile .stage/chroot_local-preseed
-
-# Checking lock file
-Check_lockfile .lock
-
-# Creating lock file
-Create_lockfile .lock
-
-if Find_files config/chroot_local-preseed/*
-then
-	# Check dependency
-	Check_package chroot/usr/bin/debconf-set-selections debconf
-
-	# Install dependency
-	Install_package
-
-	for PRESEED in config/chroot_local-preseed/*
-	do
-		# Copying local preseed
-		cp "${PRESEED}" chroot/root/preseed
-
-		Chroot chroot "debconf-set-selections /root/preseed"
-
-		# Removing local preseed file
-		rm -f chroot/root/preseed
-	done
-
-	# Remove dependency
-	Remove_package
-
-	# Creating stage file
-	Create_stagefile .stage/chroot_local-preseed
-fi
diff --git a/scripts/build/lb_chroot_preseed b/scripts/build/lb_chroot_preseed
index 63493b2..baeced8 100755
--- a/scripts/build/lb_chroot_preseed
+++ b/scripts/build/lb_chroot_preseed
@@ -14,7 +14,7 @@ set -e
 . "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
 
 # Setting static variables
-DESCRIPTION="$(Echo 'execute preseed in chroot')"
+DESCRIPTION="$(Echo 'execute local preseed in chroot')"
 HELP=""
 USAGE="${PROGRAM} [--force]"
 
@@ -24,7 +24,7 @@ Arguments "${@}"
 Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
 Set_defaults
 
-Echo_message "Begin executing preseed..."
+Echo_message "Begin executing local preseeds..."
 
 # Requiring stage file
 Require_stagefile .stage/config .stage/bootstrap
@@ -38,29 +38,29 @@ Check_lockfile .lock
 # Creating lock file
 Create_lockfile .lock
 
-# Processing preseeds
-for PRESEED in ${LB_PACKAGE_LISTS} ${LB_TASKS}
-do
-	if [ -f ${LB_BASE:-/usr/share/live/build}/preseed/"${PRESEED}" ]
-	then
-		# Check dependency
-		Check_package chroot/usr/bin/debconf-set-selections debconf
+if ls config/preseed/*.preseed > /dev/null 2>&1 || \
+   ls config/preseed/*.preseed.chroot > /dev/null 2>&1
+then
+	# Check dependency
+	Check_package chroot/usr/bin/debconf-set-selections debconf
 
-		# Install dependency
-		Install_package
+	# Install dependency
+	Install_package
 
-		# Copying preseed
+	for PRESEED in config/chroot_preseed/*.preseed config/chroot_preseed/*.preseed.chroot
+	do
+		# Copying local preseed
 		cp "${PRESEED}" chroot/root/preseed
 
 		Chroot chroot "debconf-set-selections /root/preseed"
 
-		# Removing preseed file
+		# Removing local preseed file
 		rm -f chroot/root/preseed
+	done
 
-		# Remove dependency
-		Remove_package
+	# Remove dependency
+	Remove_package
 
-		# Creating stage file
-		Create_stagefile .stage/chroot_preseed
-	fi
-done
+	# Creating stage file
+	Create_stagefile .stage/chroot_preseed
+fi
diff --git a/scripts/build/lb_config b/scripts/build/lb_config
index f015fe8..3f7ab0f 100755
--- a/scripts/build/lb_config
+++ b/scripts/build/lb_config
@@ -55,7 +55,7 @@ USAGE="${PROGRAM}   [--apt apt|aptitude]\n\
 \t    [--checksums md5|sha1|sha256|none]\n\
 \t    [--compression bzip2|gzip|lzip|none]\n\
 \t    [--build-with-chroot true|false]\n\
-\t    [--chroot-filesystem ext2|ext3|ext4|squashfs|plain|jffs2]\n\
+\t    [--chroot-filesystem ext2|ext3|ext4|squashfs|jffs2|none]\n\
 \t    [--clean\n\
 \t    [-c|--conffile FILE]\n\
 \t    [--debconf-frontend dialog|editor|noninteractive|readline]\n\
@@ -84,6 +84,7 @@ USAGE="${PROGRAM}   [--apt apt|aptitude]\n\
 \t    [--interactive shell]\n\
 \t    [--isohybrid-options OPTION|\"OPTIONS\"]\n\
 \t    [--hdd-label LABEL]\n\
+\t    [--hdd-size MB]\n\
 \t    [--iso-application NAME]\n\
 \t    [--iso-preparer NAME]\n\
 \t    [--iso-publisher NAME]\n\
@@ -115,6 +116,7 @@ USAGE="${PROGRAM}   [--apt apt|aptitude]\n\
 \t    [--mirror-binary-backports URL]\n\
 \t    [--mirror-debian-installer URL]\n\
 \t    [--mode debian|emdebian|ubuntu|kubuntu]\n\
+\t    [--system live|normal]\n\
 \t    [--net-root-filesystem nfs|cfs]\n\
 \t    [--net-root-mountoptions OPTIONS]\n\
 \t    [--net-root-path PATH]\n\
@@ -140,7 +142,6 @@ USAGE="${PROGRAM}   [--apt apt|aptitude]\n\
 \t    [--tasksel apt|aptitude|tasksel]\n\
 \t    [--tasks TASK|\"TASKS\"]\n\
 \t    [--templates PATH]\n\
-\t    [--virtual-root-size MB]\n\
 \t    [--volatile true|false]\n\
 \t    [--backports true|false]\n\
 \t    [--exposed-root true|false]\n\
@@ -153,18 +154,18 @@ Local_arguments ()
 	LONG_OPTIONS="apt:,apt-ftp-proxy:,apt-http-proxy:,apt-options:,aptitute-options:,
 		apt-pipeline:,apt-recommends:,apt-secure:,apt-source-archives:,bootstrap:,cache:,cache-indices:,cache-packages:,
 		cache-stages:,debconf-frontend:,debconf-nowarnings:,debconf-priority:,dump,
-		initramfs:,initramfs-compression:,initsystem:,fdisk:,losetup:,mode:,root-command:,use-fakeroot:,tasksel:,includes:,
+		initramfs:,initramfs-compression:,initsystem:,fdisk:,losetup:,mode:,system:,root-command:,use-fakeroot:,tasksel:,includes:,
 		templates:,architectures:,bootstrap-flavour:,bootstrap-keyring:,clean,
 		distribution:,parent-distribution:,parent-debian-installer-distribution:,parent-mirror-bootstrap:,parent-mirror-chroot:,parent-mirror-chroot-security:,parent-mirror-chroot-volatile:,parent-mirror-chroot-backports:,parent-mirror-binary:,
 		parent-mirror-binary-security:,parent-mirror-binary-volatile:,parent-mirror-binary-backports:,parent-mirror-debian-installer:,
 		mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-chroot-volatile:,mirror-chroot-backports:,mirror-binary:,
 		mirror-binary-security:,mirror-binary-volatile:,mirror-binary-backports:,mirror-debian-installer:,
-		archives:,archive-areas:,parent-archive-areas:,chroot-filesystem:,exposed-root:,virtual-root-size:,
+		archives:,archive-areas:,parent-archive-areas:,chroot-filesystem:,exposed-root:,
 		gzip-options:,hooks:,interactive:,keyring-packages:,linux-flavours:,linux-packages:,
 		package-lists:,tasks:,security:,volatile:,backports:,binary-filesystem:,binary-images:,
 		apt-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,compression:,build-with-chroot:,
 		debian-installer:,debian-installer-distribution:,debian-installer-preseedfile:,debian-installer-gui:,
-		grub-splash:,hostname:,isohybrid-options:,hdd-label:,iso-application:,iso-preparer:,iso-publisher:,
+		grub-splash:,hostname:,isohybrid-options:,hdd-label:,hdd-size:,iso-application:,iso-preparer:,iso-publisher:,
 		iso-volume:,jffs2-eraseblock:,memtest:,net-root-filesystem:,net-root-mountoptions:,
 		net-root-path:,net-root-server:,net-cow-filesystem:,net-cow-mountoptions:,net-cow-path:,
 		net-cow-server:,net-tarball:,swap-file-path:,swap-file-size:,syslinux-theme:,
@@ -198,7 +199,7 @@ Local_arguments ()
 				Print_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
 
 				# Dump contents of directories that contain text files
-				for DIRECTORY in config/package-lists config/task-lists config/chroot_apt config/chroot_local-patches config/chroot_local-preseed config/binary_rootfs
+				for DIRECTORY in config/package-lists config/task-lists config/chroot_apt config/chroot_local-patches config/preseed config/binary_rootfs
 				do
 					if Find_files "${DIRECTORY}"
 					then
@@ -347,6 +348,11 @@ Local_arguments ()
 				shift 2
 				;;
 
+			--system)
+				LB_SYSTEM="${2}"
+				shift 2
+				;;
+
 			--root-command)
 				LB_ROOT_COMMAND="${2}"
 				shift 2
@@ -524,11 +530,6 @@ Local_arguments ()
 				shift 2
 				;;
 
-			--virtual-root-size)
-				LB_VIRTUAL_ROOT_SIZE="${2}"
-				shift 2
-				;;
-
 			--exposed-root)
 				LB_EXPOSED_ROOT="${2}"
 				shift 2
@@ -675,6 +676,11 @@ Local_arguments ()
 				shift 2
 				;;
 
+			--hdd-size)
+				LB_HDD_SIZE="${2}"
+				shift 2
+				;;
+
 			--iso-application)
 				LB_ISO_APPLICATION="${2}"
 				shift 2
@@ -981,6 +987,10 @@ LB_LOSETUP="${LB_LOSETUP}"
 # (Default: ${LB_MODE})
 LB_MODE="${LB_MODE}"
 
+# \$LB_SYSTEM: set system type
+# (Default: ${LB_SYSTEM})
+LB_SYSTEM="${LB_SYSTEM}"
+
 # \$LB_ROOT_COMMAND: use sudo or equivalent
 # (Default: empty)
 #LB_ROOT_COMMAND="sudo"
@@ -1172,7 +1182,7 @@ mkdir -p config/chroot_local-patches
 mkdir -p config/packages
 mkdir -p config/packages.chroot
 mkdir -p config/package-lists
-mkdir -p config/chroot_local-preseed
+mkdir -p config/preseed
 mkdir -p config/task-lists
 
 cat > config/chroot << EOF
@@ -1186,10 +1196,6 @@ LB_CHROOT_FILESYSTEM="${LB_CHROOT_FILESYSTEM}"
 # (Default: ${LB_UNION_FILESYSTEM})
 LB_UNION_FILESYSTEM="${LB_UNION_FILESYSTEM}"
 
-# \$LB_VIRTUAL_ROOT_SIZE: set virtual-hdd filesystem size
-# (Default: ${LB_VIRTUAL_ROOT_SIZE})
-LB_VIRTUAL_ROOT_SIZE="${LB_VIRTUAL_ROOT_SIZE}"
-
 # \$LB_EXPOSED_ROOT: expose root as read only
 # (Default: ${LB_EXPOSED_ROOT})
 LB_EXPOSED_ROOT="${LB_EXPOSED_ROOT}"
@@ -1313,6 +1319,9 @@ LB_HOSTNAME="${LB_HOSTNAME}"
 # (Default: ${LB_HDD_LABEL})
 LB_HDD_LABEL="${LB_HDD_LABEL}"
 
+# \$LB_HDD_SIZE: set hdd filesystem size
+# (Default: ${LB_HDD_SIZE})
+LB_HDD_SIZE="${LB_HDD_SIZE}"
 
 # \$LB_ISO_APPLICATION: set iso author
 # (Default: ${LB_ISO_APPLICATION})
@@ -1422,7 +1431,7 @@ then
 	then
 		Echo_warning "Please install 'debconf-utils' in order to use this feature."
 	else
-		debconf-get-selections | grep -v deinstall | cut -f1 > config/chroot_local-preseed/local-system
+		debconf-get-selections | grep -v deinstall | cut -f1 > config/preseed/local.preseed.chroot
 	fi
 fi
 

-- 
live-build



More information about the debian-live-changes mailing list