summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfunctions/chroot.sh4
-rwxr-xr-xfunctions/defaults.sh13
-rwxr-xr-xfunctions/losetup.sh10
-rw-r--r--manpages/de/lb.de.12
-rw-r--r--manpages/de/lb_binary.de.12
-rw-r--r--manpages/de/lb_bootstrap.de.12
-rw-r--r--manpages/de/lb_build.de.12
-rw-r--r--manpages/de/lb_chroot.de.12
-rw-r--r--manpages/de/lb_clean.de.12
-rw-r--r--manpages/de/lb_config.de.18
-rw-r--r--manpages/de/lb_source.de.12
-rw-r--r--manpages/de/lb_testroot.de.12
-rw-r--r--manpages/de/live-build.de.72
-rw-r--r--manpages/en/lb.12
-rw-r--r--manpages/en/lb_binary.12
-rw-r--r--manpages/en/lb_bootstrap.12
-rw-r--r--manpages/en/lb_build.12
-rw-r--r--manpages/en/lb_chroot.12
-rw-r--r--manpages/en/lb_clean.12
-rw-r--r--manpages/en/lb_config.16
-rw-r--r--manpages/en/lb_source.12
-rw-r--r--manpages/en/lb_testroot.12
-rw-r--r--manpages/en/live-build.72
-rw-r--r--manpages/po/de/lb.1.po30
-rw-r--r--manpages/po/de/lb_binary.1.po30
-rw-r--r--manpages/po/de/lb_bootstrap.1.po30
-rw-r--r--manpages/po/de/lb_build.1.po30
-rw-r--r--manpages/po/de/lb_chroot.1.po30
-rw-r--r--manpages/po/de/lb_clean.1.po30
-rw-r--r--manpages/po/de/lb_config.1.po545
-rw-r--r--manpages/po/de/lb_source.1.po30
-rw-r--r--manpages/po/de/lb_testroot.1.po30
-rw-r--r--manpages/po/de/live-build.7.po40
-rw-r--r--manpages/pot/lb.1.pot28
-rw-r--r--manpages/pot/lb_binary.1.pot28
-rw-r--r--manpages/pot/lb_bootstrap.1.pot28
-rw-r--r--manpages/pot/lb_build.1.pot28
-rw-r--r--manpages/pot/lb_chroot.1.pot28
-rw-r--r--manpages/pot/lb_clean.1.pot28
-rw-r--r--manpages/pot/lb_config.1.pot543
-rw-r--r--manpages/pot/lb_source.1.pot28
-rw-r--r--manpages/pot/lb_testroot.1.pot28
-rw-r--r--manpages/pot/live-build.7.pot38
-rwxr-xr-xscripts/build/binary_chroot23
-rwxr-xr-xscripts/build/binary_debian-installer4
-rwxr-xr-xscripts/build/binary_hdd4
-rwxr-xr-xscripts/build/binary_rootfs33
-rwxr-xr-xscripts/build/bootstrap_cache14
-rwxr-xr-xscripts/build/bootstrap_cdebootstrap16
-rwxr-xr-xscripts/build/bootstrap_debootstrap16
-rwxr-xr-xscripts/build/chroot_cache14
-rwxr-xr-xscripts/build/chroot_devpts6
-rwxr-xr-xscripts/build/chroot_dpkg12
-rwxr-xr-xscripts/build/chroot_hacks5
-rwxr-xr-xscripts/build/chroot_proc6
-rwxr-xr-xscripts/build/chroot_selinuxfs4
-rwxr-xr-xscripts/build/chroot_sysfs4
-rwxr-xr-xscripts/build/clean34
-rwxr-xr-xscripts/build/config12
-rwxr-xr-xscripts/build/source_hdd4
-rwxr-xr-xscripts/build/testroot2
61 files changed, 892 insertions, 1028 deletions
diff --git a/functions/chroot.sh b/functions/chroot.sh
index c166fdd2e..901bd82ff 100755
--- a/functions/chroot.sh
+++ b/functions/chroot.sh
@@ -28,10 +28,10 @@ Chroot ()
if [ "${LB_USE_FAKEROOT}" != "true" ]
then
- ${LB_ROOT_COMMAND} ${_LINUX32} chroot "${CHROOT}" /usr/bin/env -i HOME="/root" PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" TERM="${TERM}" DEBIAN_FRONTEND="${LB_DEBCONF_FRONTEND}" DEBIAN_PRIORITY="${LB_DEBCONF_PRIORITY}" DEBCONF_NONINTERACTIVE_SEEN="true" DEBCONF_NOWARNINGS="true" ${ENV} ${COMMANDS}
+ ${_LINUX32} chroot "${CHROOT}" /usr/bin/env -i HOME="/root" PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" TERM="${TERM}" DEBIAN_FRONTEND="${LB_DEBCONF_FRONTEND}" DEBIAN_PRIORITY="${LB_DEBCONF_PRIORITY}" DEBCONF_NONINTERACTIVE_SEEN="true" DEBCONF_NOWARNINGS="true" ${ENV} ${COMMANDS}
else
# Building with fakeroot/fakechroot
- ${LB_ROOT_COMMAND} ${_LINUX32} chroot "${CHROOT}" ${ENV} ${COMMANDS}
+ ${_LINUX32} chroot "${CHROOT}" ${ENV} ${COMMANDS}
fi
return "${?}"
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 1f2b5fabf..592e5a1fc 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -322,19 +322,6 @@ Set_defaults ()
fi
fi
- if [ "$(id -u)" = "0" ]
- then
- # If we are root, disable root command
- LB_ROOT_COMMAND=""
- else
- if [ -x /usr/bin/sudo ]
- then
- # FIXME: this is false until considered safe
- #LB_ROOT_COMMAND="sudo"
- LB_ROOT_COMMAND=""
- fi
- fi
-
if [ "${LIVE_IMAGE_ARCHITECTURE}" = "i386" ] && [ "${CURRENT_IMAGE_ARCHITECTURE}" = "amd64" ]
then
# Use linux32 when building amd64 images on i386
diff --git a/functions/losetup.sh b/functions/losetup.sh
index 48c7542b2..3b389c3cf 100755
--- a/functions/losetup.sh
+++ b/functions/losetup.sh
@@ -23,7 +23,7 @@ Lodetach ()
# a race condition. We call 'udevadm settle' to help avoid this.
if [ -x "$(which udevadm 2>/dev/null)" ]
then
- ${LB_ROOT_COMMAND} udevadm settle
+ udevadm settle
fi
# Loop back devices aren't the most reliable when it comes to writes.
@@ -31,7 +31,7 @@ Lodetach ()
sync
sleep 1
- ${LB_ROOT_COMMAND} ${LB_LOSETUP} -d "${DEVICE}" || Lodetach "${DEVICE}" "$(expr ${ATTEMPT} + 1)"
+ ${LB_LOSETUP} -d "${DEVICE}" || Lodetach "${DEVICE}" "$(expr ${ATTEMPT} + 1)"
}
Losetup ()
@@ -40,7 +40,7 @@ Losetup ()
FILE="${2}"
PARTITION="${3:-1}"
- ${LB_ROOT_COMMAND} ${LB_LOSETUP} --read-only "${DEVICE}" "${FILE}"
+ ${LB_LOSETUP} --read-only "${DEVICE}" "${FILE}"
FDISK_OUT="$(${LB_FDISK} -l -u ${DEVICE} 2>&1)"
Lodetach "${DEVICE}"
@@ -50,14 +50,14 @@ Losetup ()
then
Echo_message "Mounting %s with offset 0" "${DEVICE}"
- ${LB_ROOT_COMMAND} ${LB_LOSETUP} "${DEVICE}" "${FILE}"
+ ${LB_LOSETUP} "${DEVICE}" "${FILE}"
else
SECTORS="$(echo "$FDISK_OUT" | sed -ne "s|^$LOOPDEVICE[ *]*\([0-9]*\).*|\1|p")"
OFFSET="$(expr ${SECTORS} '*' 512)"
Echo_message "Mounting %s with offset %s" "${DEVICE}" "${OFFSET}"
- ${LB_ROOT_COMMAND} ${LB_LOSETUP} -o "${OFFSET}" "${DEVICE}" "${FILE}"
+ ${LB_LOSETUP} -o "${OFFSET}" "${DEVICE}" "${FILE}"
fi
}
diff --git a/manpages/de/lb.de.1 b/manpages/de/lb.de.1
index 125116eb9..9b37ea0ac 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 15.02.2013 4.0~a11\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 18.02.2013 4.0~a11\-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 b08c759b2..756656613 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 15.02.2013 4.0~a11\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 18.02.2013 4.0~a11\-1 "Debian Live Project"
.SH NAME
\fBlb binary\fP \- Complete the binary stage
diff --git a/manpages/de/lb_bootstrap.de.1 b/manpages/de/lb_bootstrap.de.1
index 012fb6896..6f19c9895 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 15.02.2013 4.0~a11\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 18.02.2013 4.0~a11\-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_build.de.1 b/manpages/de/lb_build.de.1
index 7d98e80ec..b9b8450ab 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 15.02.2013 4.0~a11\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 18.02.2013 4.0~a11\-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 f13beb118..6a593f7b5 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 15.02.2013 4.0~a11\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 18.02.2013 4.0~a11\-1 "Debian Live Project"
.SH NAME
\fBlb chroot\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_clean.de.1 b/manpages/de/lb_clean.de.1
index 8cfe7cabe..0d936cd32 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 15.02.2013 4.0~a11\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 18.02.2013 4.0~a11\-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 9bfbef6ff..e7163f428 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 15.02.2013 4.0~a11\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 18.02.2013 4.0~a11\-1 "Debian Live Project"
.SH NAME
\fBlb config\fP \- Create config directory
@@ -202,8 +202,6 @@
.br
[\fB\-\-quiet\fP]
.br
- [\fB\-\-root\-command\fP sudo]
-.br
[\fB\-\-use\-fakeroot\fP true|false]
.br
[\fB\-\-archives\fP \fIARCHIVE\fP|\fI"ARCHIVES"\fP]
@@ -672,10 +670,6 @@ reduces the verbosity of messages output by \fBlb build\fP.
.IP "\fB\-\-archives\fP \fIARCHIVE\fP|\(dq\fIARCHIVES\fP\(dq" 4
enables one of available third\-party archive configurations in
/usr/share/live/build/archives.
-.IP "\fB\-\-root\-command\fP sudo" 4
-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, call the individual live\-build command with sudo itself.
.IP "\fB\-\-use\-fakeroot\fP true|false" 4
controls if live\-build should utilize fakeroot and fakechroot to try and
avoid requiring root privillages where possible. By default, this option is
diff --git a/manpages/de/lb_source.de.1 b/manpages/de/lb_source.de.1
index 07e98adc2..c67c589ba 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 15.02.2013 4.0~a11\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 18.02.2013 4.0~a11\-1 "Debian Live Project"
.SH NAME
\fBlb source\fP \- Complete the source stage
diff --git a/manpages/de/lb_testroot.de.1 b/manpages/de/lb_testroot.de.1
index b853f1e7d..873531f82 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 15.02.2013 4.0~a11\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 18.02.2013 4.0~a11\-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 935e9e53b..2d9c06fab 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 15.02.2013 4.0~a11\-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 18.02.2013 4.0~a11\-1 "Debian Live Project"
.SH NAME
\fBlive\-build\fP \- the Debian Live tool suite
diff --git a/manpages/en/lb.1 b/manpages/en/lb.1
index 703307d09..7b39a7f2f 100644
--- a/manpages/en/lb.1
+++ b/manpages/en/lb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2013\-02\-15 4.0~a11-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2013\-02\-18 4.0~a11-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 b0c4a9854..8f0a6b487 100644
--- a/manpages/en/lb_binary.1
+++ b/manpages/en/lb_binary.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2013\-02\-15 4.0~a11-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2013\-02\-18 4.0~a11-1 "Debian Live Project"
.SH NAME
\fBlb binary\fR \- Complete the binary stage
diff --git a/manpages/en/lb_bootstrap.1 b/manpages/en/lb_bootstrap.1
index 0859b0426..c7d890aeb 100644
--- a/manpages/en/lb_bootstrap.1
+++ b/manpages/en/lb_bootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2013\-02\-15 4.0~a11-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2013\-02\-18 4.0~a11-1 "Debian Live Project"
.SH NAME
\fBlb bootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_build.1 b/manpages/en/lb_build.1
index ccf8ddd9e..fc7422766 100644
--- a/manpages/en/lb_build.1
+++ b/manpages/en/lb_build.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2013\-02\-15 4.0~a11-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2013\-02\-18 4.0~a11-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 9e3b8dc2d..81e88a11f 100644
--- a/manpages/en/lb_chroot.1
+++ b/manpages/en/lb_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2013\-02\-15 4.0~a11-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2013\-02\-18 4.0~a11-1 "Debian Live Project"
.SH NAME
\fBlb chroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_clean.1 b/manpages/en/lb_clean.1
index e3c07bb40..01144e889 100644
--- a/manpages/en/lb_clean.1
+++ b/manpages/en/lb_clean.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2013\-02\-15 4.0~a11-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2013\-02\-18 4.0~a11-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 687256127..f3d69bfe4 100644
--- a/manpages/en/lb_config.1
+++ b/manpages/en/lb_config.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2013\-02\-15 4.0~a11-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2013\-02\-18 4.0~a11-1 "Debian Live Project"
.SH NAME
\fBlb config\fR \- Create config directory
@@ -197,8 +197,6 @@
.br
[\fB\-\-quiet\fR]
.br
- [\fB\-\-root-command\fR sudo]
-.br
[\fB\-\-use-fakeroot\fR true|false]
.br
[\fB\-\-archives\fR \fIARCHIVE\fR|\fI"ARCHIVES"\fR]
@@ -434,8 +432,6 @@ defines if a compressed tarball should be created. Disabling this options leads
reduces the verbosity of messages output by \fBlb build\fR.
.IP "\fB\-\-archives\fR \fIARCHIVE\fR|""\fIARCHIVES\fR""" 4
enables one of available third-party archive configurations in /usr/share/live/build/archives.
-.IP "\fB\-\-root-command\fR sudo" 4
-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, call the individual live\-build command with sudo itself.
.IP "\fB\-\-use-fakeroot\fR true|false" 4
controls if live\-build should utilize fakeroot and fakechroot to try and avoid requiring root privillages where possible. By default, this option is false.
.IP "\fB\-\-archive\-areas\fR \fIARCHIVE_AREA\fR|""\fIARCHIVE_AREAS\fR""" 4
diff --git a/manpages/en/lb_source.1 b/manpages/en/lb_source.1
index ca6b15502..7e214932f 100644
--- a/manpages/en/lb_source.1
+++ b/manpages/en/lb_source.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2013\-02\-15 4.0~a11-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2013\-02\-18 4.0~a11-1 "Debian Live Project"
.SH NAME
\fBlb source\fR \- Complete the source stage
diff --git a/manpages/en/lb_testroot.1 b/manpages/en/lb_testroot.1
index 089d67b5d..b75a84e62 100644
--- a/manpages/en/lb_testroot.1
+++ b/manpages/en/lb_testroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2013\-02\-15 4.0~a11-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2013\-02\-18 4.0~a11-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 3e323c91b..8fc6c9648 100644
--- a/manpages/en/live-build.7
+++ b/manpages/en/live-build.7
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 7 2013\-02\-15 4.0~a11-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 2013\-02\-18 4.0~a11-1 "Debian Live Project"
.SH NAME
\fBlive\-build\fR \- the Debian Live tool suite
diff --git a/manpages/po/de/lb.1.po b/manpages/po/de/lb.1.po
index 52646497d..21cc44bbf 100644
--- a/manpages/po/de/lb.1.po
+++ b/manpages/po/de/lb.1.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a10-1\n"
-"POT-Creation-Date: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <daniel@debian.org>\n"
"Language-Team: none\n"
@@ -28,8 +28,8 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
-msgstr "15.02.2013"
+msgid "2013-02-18"
+msgstr "18.02.2013"
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
@@ -80,7 +80,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -95,7 +95,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -111,7 +111,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -126,7 +126,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -134,21 +134,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -156,7 +156,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -166,7 +166,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -174,7 +174,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -185,7 +185,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -193,7 +193,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_binary.1.po b/manpages/po/de/lb_binary.1.po
index e71fa15ea..b9c637328 100644
--- a/manpages/po/de/lb_binary.1.po
+++ b/manpages/po/de/lb_binary.1.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a10-1\n"
-"POT-Creation-Date: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <daniel@debian.org>\n"
"Language-Team: none\n"
@@ -28,8 +28,8 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
-msgstr "15.02.2013"
+msgid "2013-02-18"
+msgstr "18.02.2013"
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
@@ -65,7 +65,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -73,7 +73,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -81,7 +81,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -96,7 +96,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -104,21 +104,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -126,7 +126,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -136,7 +136,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -144,7 +144,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -155,7 +155,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -163,7 +163,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_bootstrap.1.po b/manpages/po/de/lb_bootstrap.1.po
index 58b21e5a3..7128cb491 100644
--- a/manpages/po/de/lb_bootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap.1.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a10-1\n"
-"POT-Creation-Date: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <daniel@debian.org>\n"
"Language-Team: none\n"
@@ -28,8 +28,8 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
-msgstr "15.02.2013"
+msgid "2013-02-18"
+msgstr "18.02.2013"
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
@@ -65,7 +65,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -73,7 +73,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -81,7 +81,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -96,7 +96,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -104,21 +104,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -126,7 +126,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -136,7 +136,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -144,7 +144,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -155,7 +155,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -163,7 +163,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_build.1.po b/manpages/po/de/lb_build.1.po
index 2c3ced953..0fab5403c 100644
--- a/manpages/po/de/lb_build.1.po
+++ b/manpages/po/de/lb_build.1.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a10-1\n"
-"POT-Creation-Date: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <daniel@debian.org>\n"
"Language-Team: none\n"
@@ -28,8 +28,8 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
-msgstr "15.02.2013"
+msgid "2013-02-18"
+msgstr "18.02.2013"
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
@@ -65,7 +65,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -73,7 +73,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -81,7 +81,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -89,7 +89,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -97,21 +97,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -119,7 +119,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -129,7 +129,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -137,7 +137,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -148,7 +148,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -156,7 +156,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_chroot.1.po b/manpages/po/de/lb_chroot.1.po
index 567a4c64c..86360a3ba 100644
--- a/manpages/po/de/lb_chroot.1.po
+++ b/manpages/po/de/lb_chroot.1.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a10-1\n"
-"POT-Creation-Date: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <daniel@debian.org>\n"
"Language-Team: none\n"
@@ -28,8 +28,8 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
-msgstr "15.02.2013"
+msgid "2013-02-18"
+msgstr "18.02.2013"
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
@@ -65,7 +65,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -73,7 +73,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -81,7 +81,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -96,7 +96,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -104,21 +104,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -126,7 +126,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -136,7 +136,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -144,7 +144,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -155,7 +155,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -163,7 +163,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_clean.1.po b/manpages/po/de/lb_clean.1.po
index bef3df24b..a4d827520 100644
--- a/manpages/po/de/lb_clean.1.po
+++ b/manpages/po/de/lb_clean.1.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a10-1\n"
-"POT-Creation-Date: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <daniel@debian.org>\n"
"Language-Team: none\n"
@@ -28,8 +28,8 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
-msgstr "15.02.2013"
+msgid "2013-02-18"
+msgstr "18.02.2013"
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
@@ -65,7 +65,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -73,7 +73,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -81,7 +81,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -89,7 +89,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -97,21 +97,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -119,7 +119,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -129,7 +129,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -137,7 +137,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -148,7 +148,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -156,7 +156,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_config.1.po b/manpages/po/de/lb_config.1.po
index eeba12fe7..649195455 100644
--- a/manpages/po/de/lb_config.1.po
+++ b/manpages/po/de/lb_config.1.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a10-1\n"
-"POT-Creation-Date: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <daniel@debian.org>\n"
"Language-Team: none\n"
@@ -28,8 +28,8 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
-msgstr "15.02.2013"
+msgid "2013-02-18"
+msgstr "18.02.2013"
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
@@ -65,7 +65,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -73,7 +73,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -81,7 +81,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -89,7 +89,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -97,21 +97,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -119,7 +119,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -129,7 +129,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -137,7 +137,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -148,7 +148,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -156,7 +156,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
@@ -652,89 +652,84 @@ msgstr ""
#. type: Plain text
#: en/lb_config.1:201
-msgid " [B<--root-command> sudo]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_config.1:203
msgid " [B<--use-fakeroot> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:205
+#: en/lb_config.1:203
msgid " [B<--archives> I<ARCHIVE>|I<\"ARCHIVES\">]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:207
+#: en/lb_config.1:205
msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:209
+#: en/lb_config.1:207
msgid ""
" [B<--parent-archive-areas> I<PARENT_ARCHIVE_AREA>|I<\"PARENT_ARCHIVE_AREAS"
"\">]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:211
+#: en/lb_config.1:209
msgid " [B<--security> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:213
+#: en/lb_config.1:211
msgid " [B<--source> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:215
+#: en/lb_config.1:213
msgid " [-s|B<--source-images> iso|netboot|tar|hdd]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:217
+#: en/lb_config.1:215
msgid " [B<--tasksel> apt|aptitude|tasksel]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:219
+#: en/lb_config.1:217
msgid " [B<--templates> I<PATH>]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:221
+#: en/lb_config.1:219
msgid " [B<--hdd-size >I<MB>]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:223
+#: en/lb_config.1:221
msgid " [B<--updates> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:225
+#: en/lb_config.1:223
msgid " [B<--backports> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:227
+#: en/lb_config.1:225
msgid " [B<--exposed-root> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:229
+#: en/lb_config.1:227
msgid " [B<--verbose>]"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:232
+#: en/lb_config.1:230
msgid " [B<--win32-loader true|false]>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:235
+#: en/lb_config.1:233
msgid ""
"B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
"Debian Live tool suite."
@@ -742,7 +737,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:238
+#: en/lb_config.1:236
msgid ""
"B<lb config> populates the configuration directory for live-build. By "
"default, this directory is named 'config' and is created in the current "
@@ -751,7 +746,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:241
+#: en/lb_config.1:239
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 "
@@ -767,7 +762,7 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:244
+#: en/lb_config.1:242
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 "
@@ -776,26 +771,26 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:246
+#: en/lb_config.1:244
#, no-wrap
msgid "B<--apt> apt|aptitude"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:248
+#: en/lb_config.1:246
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:248
+#: en/lb_config.1:246
#, no-wrap
msgid "B<--apt-ftp-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:250
+#: en/lb_config.1:248
msgid ""
"sets the ftp proxy to be used by apt. By default, this is empty. Note that "
"this variable is only for the proxy that gets used by apt internally within "
@@ -803,13 +798,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:250
+#: en/lb_config.1:248
#, no-wrap
msgid "B<--apt-http-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:252
+#: en/lb_config.1:250
msgid ""
"sets the http proxy to be used by apt. By default, this is empty. Note that "
"this variable is only for the proxy that gets used by apt internally within "
@@ -817,26 +812,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:252
+#: en/lb_config.1:250
#, no-wrap
msgid "B<--apt-indices> true|false|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:254
+#: en/lb_config.1:252
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:254
+#: en/lb_config.1:252
#, no-wrap
msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:256
+#: en/lb_config.1:254
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 "
@@ -844,13 +839,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:256
+#: en/lb_config.1:254
#, no-wrap
msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:258
+#: en/lb_config.1:256
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 "
@@ -858,13 +853,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:258
+#: en/lb_config.1:256
#, no-wrap
msgid "B<--apt-pipeline> I<DEPTH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:260
+#: en/lb_config.1:258
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 "
@@ -876,51 +871,51 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:260
+#: en/lb_config.1:258
#, no-wrap
msgid "B<--apt-recommends> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:262
+#: en/lb_config.1:260
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:262
+#: en/lb_config.1:260
#, no-wrap
msgid "B<--apt-secure> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:264
+#: en/lb_config.1:262
msgid ""
"defines if apt should check repository signatures. This is true by default."
msgstr ""
#. type: IP
-#: en/lb_config.1:264
+#: en/lb_config.1:262
#, no-wrap
msgid "B<--apt-source-archives> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:266
+#: en/lb_config.1:264
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:266
+#: en/lb_config.1:264
#, no-wrap
msgid "-a|B<--architectures> I<ARCHITECTURE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:268
+#: en/lb_config.1:266
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 "
@@ -931,13 +926,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:268
+#: en/lb_config.1:266
#, no-wrap
msgid "-b|B<--binary-images> iso|iso-hybrid|netboot|tar|hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:270
+#: en/lb_config.1:268
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 "
@@ -945,13 +940,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:270
+#: en/lb_config.1:268
#, no-wrap
msgid "B<--binary-filesystem> fat16|fat32|ext2|ext3|ext4"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:272
+#: en/lb_config.1:270
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 "
@@ -964,24 +959,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:272
+#: en/lb_config.1:270
#, no-wrap
msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:274
+#: en/lb_config.1:272
msgid "sets boot parameters specific to debian-installer, if included."
msgstr ""
#. type: IP
-#: en/lb_config.1:274
+#: en/lb_config.1:272
#, no-wrap
msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:276
+#: en/lb_config.1:274
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 "
@@ -989,13 +984,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:276
+#: en/lb_config.1:274
#, no-wrap
msgid "B<--bootloader> grub|syslinux"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:278
+#: en/lb_config.1:276
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 "
@@ -1008,39 +1003,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:278
+#: en/lb_config.1:276
#, no-wrap
msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:280
+#: en/lb_config.1:278
msgid ""
"defines which program is used to bootstrap the debian chroot, default is "
"debootstrap."
msgstr ""
#. type: IP
-#: en/lb_config.1:280
+#: en/lb_config.1:278
#, no-wrap
msgid "B<--cache> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:282
+#: en/lb_config.1:280
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:282
+#: en/lb_config.1:280
#, no-wrap
msgid "B<--cache-indices> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:284
+#: en/lb_config.1:282
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 "
@@ -1048,13 +1043,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:284
+#: en/lb_config.1:282
#, no-wrap
msgid "B<--cache-packages> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:286
+#: en/lb_config.1:284
msgid ""
"defines if downloaded packages files should be cached which is true by "
"default. Disabling it does save space consumtion in your build directory, "
@@ -1065,13 +1060,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:286
+#: en/lb_config.1:284
#, no-wrap
msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:288
+#: en/lb_config.1:286
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 "
@@ -1081,13 +1076,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:288
+#: en/lb_config.1:286
#, no-wrap
msgid "B<--checksums> md5|sha1|sha256|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:290
+#: en/lb_config.1:288
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 "
@@ -1099,39 +1094,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:290
+#: en/lb_config.1:288
#, no-wrap
msgid "B<--compression> bzip2|gzip|lzip|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:292
+#: en/lb_config.1:290
msgid ""
"defines the compression program to be used to compress tarballs. Defaults to "
"gzip."
msgstr ""
#. type: IP
-#: en/lb_config.1:292
+#: en/lb_config.1:290
#, no-wrap
msgid "B<--config> I<GIT_URL>::I<GIT_ID>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:294
+#: en/lb_config.1:292
msgid ""
"allows to bootstrap a config tree from a git repositories, optionally "
"appended by a Git Id (branch, commit, tag, etc.)."
msgstr ""
#. type: IP
-#: en/lb_config.1:294
+#: en/lb_config.1:292
#, no-wrap
msgid "B<--build-with-chroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:296
+#: en/lb_config.1:294
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. "
@@ -1145,13 +1140,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:296
+#: en/lb_config.1:294
#, no-wrap
msgid "B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:298
+#: en/lb_config.1:296
msgid ""
"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 "
@@ -1162,39 +1157,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:298
+#: en/lb_config.1:296
#, no-wrap
msgid "B<--clean>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:300
+#: en/lb_config.1:298
msgid ""
"minimizes config directory by automatically removing unused and thus empty "
"subdirectories."
msgstr ""
#. type: IP
-#: en/lb_config.1:300
+#: en/lb_config.1:298
#, no-wrap
msgid "-c|B<--conffile> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:302
+#: en/lb_config.1:300
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:302
+#: en/lb_config.1:300
#, no-wrap
msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:304
+#: en/lb_config.1:302
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, "
@@ -1202,13 +1197,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:304
+#: en/lb_config.1:302
#, no-wrap
msgid "B<--debconf-priority> low|medium|high|critical"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:306
+#: en/lb_config.1:304
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 "
@@ -1217,13 +1212,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:306
+#: en/lb_config.1:304
#, no-wrap
msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:308
+#: en/lb_config.1:306
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 "
@@ -1235,13 +1230,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:308
+#: en/lb_config.1:306
#, no-wrap
msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:310
+#: en/lb_config.1:308
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 "
@@ -1250,13 +1245,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:310
+#: en/lb_config.1:308
#, no-wrap
msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:312
+#: en/lb_config.1:310
msgid ""
"sets the filename or URL for an optionally used and included preseeding file "
"for debian-installer. If config/binary_debian-installer/preseed.cfg exists, "
@@ -1264,13 +1259,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:312
+#: en/lb_config.1:310
#, no-wrap
msgid "B<--debian-installer-gui> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:314
+#: en/lb_config.1:312
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, "
@@ -1278,60 +1273,60 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:314 en/live-build.7:36
+#: en/lb_config.1:312 en/live-build.7:36
#, no-wrap
msgid "B<--debug>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:316
+#: en/lb_config.1:314
msgid "turn on debugging informational messages."
msgstr ""
#. type: IP
-#: en/lb_config.1:316
+#: en/lb_config.1:314
#, no-wrap
msgid "-d|B<--distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:318
+#: en/lb_config.1:316
msgid "defines the distribution of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:318
+#: en/lb_config.1:316
#, no-wrap
msgid "-d|B<--parent-distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:320
+#: en/lb_config.1:318
msgid ""
"defines the parent distribution for derivatives of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:320
+#: en/lb_config.1:318
#, no-wrap
msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:322
+#: en/lb_config.1:320
msgid ""
"defines the parent debian-installer distribution for derivatives of the "
"resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:322
+#: en/lb_config.1:320
#, no-wrap
msgid "B<--dump>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:324
+#: en/lb_config.1:322
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 "
@@ -1340,26 +1335,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:324
+#: en/lb_config.1:322
#, no-wrap
msgid "B<--fdisk> fdisk|fdisk.dist"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:326
+#: en/lb_config.1:324
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:326 en/live-build.7:38
+#: en/lb_config.1:324 en/live-build.7:38
#, no-wrap
msgid "B<--force>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:328
+#: en/lb_config.1:326
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-"
@@ -1367,26 +1362,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:328
+#: en/lb_config.1:326
#, no-wrap
msgid "B<--grub-splash> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:330
+#: en/lb_config.1:328
msgid ""
"defines the name of an optional to be included splash screen graphic for the "
"grub bootloader."
msgstr ""
#. type: IP
-#: en/lb_config.1:330
+#: en/lb_config.1:328
#, no-wrap
msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:332
+#: en/lb_config.1:330
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 "
@@ -1395,13 +1390,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:332
+#: en/lb_config.1:330
#, no-wrap
msgid "B<--hooks> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:334
+#: en/lb_config.1:332
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 "
@@ -1409,13 +1404,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:334
+#: en/lb_config.1:332
#, no-wrap
msgid "B<--ignore-system-defaults>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:336
+#: en/lb_config.1:334
msgid ""
"B<lb config> by default reads system defaults from I</etc/live/build.conf> "
"and I</etc/live/build/*> when generating a new live system config directory. "
@@ -1424,13 +1419,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:336
+#: en/lb_config.1:334
#, no-wrap
msgid "B<--initramfs> auto|none|live-boot|casper"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:338
+#: en/lb_config.1:336
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 "
@@ -1441,26 +1436,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:338
+#: en/lb_config.1:336
#, no-wrap
msgid "B<--initramfs-compression> bzip2|gzip|lzma]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:340
+#: en/lb_config.1:338
msgid ""
"defines the compression program to be used to compress the initramfs. "
"Defaults to gzip."
msgstr ""
#. type: IP
-#: en/lb_config.1:340
+#: en/lb_config.1:338
#, no-wrap
msgid "B<--interactive> shell"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:342
+#: en/lb_config.1:340
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 "
@@ -1474,24 +1469,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:342
+#: en/lb_config.1:340
#, no-wrap
msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:344
+#: en/lb_config.1:342
msgid "defines options to pass to isohybrid."
msgstr ""
#. type: IP
-#: en/lb_config.1:344
+#: en/lb_config.1:342
#, no-wrap
msgid "B<--iso-application> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:346
+#: en/lb_config.1:344
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 "
@@ -1499,13 +1494,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:346
+#: en/lb_config.1:344
#, no-wrap
msgid "B<--iso-preparer> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:348
+#: en/lb_config.1:346
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."
@@ -1514,13 +1509,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:348
+#: en/lb_config.1:346
#, no-wrap
msgid "B<--iso-publisher> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:350
+#: en/lb_config.1:348
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-"
@@ -1529,13 +1524,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:350
+#: en/lb_config.1:348
#, no-wrap
msgid "B<--iso-volume> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:352
+#: en/lb_config.1:350
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 "
@@ -1544,13 +1539,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:352
+#: en/lb_config.1:350
#, no-wrap
msgid "B<--jffs2-eraseblock> I<SIZE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:354
+#: en/lb_config.1:352
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 "
@@ -1560,39 +1555,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:354
+#: en/lb_config.1:352
#, no-wrap
msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:356
+#: en/lb_config.1:354
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:356
+#: en/lb_config.1:354
#, no-wrap
msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:358
+#: en/lb_config.1:356
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:358
+#: en/lb_config.1:356
#, no-wrap
msgid "B<--linux-packages> \"I<PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:360
+#: en/lb_config.1:358
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 "
@@ -1606,26 +1601,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:360
+#: en/lb_config.1:358
#, no-wrap
msgid "B<--losetup> losetup|losetup.orig"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:362
+#: en/lb_config.1:360
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:362
+#: en/lb_config.1:360
#, no-wrap
msgid "B<--memtest> memtest86+|memtest86|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:364
+#: en/lb_config.1:362
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 "
@@ -1633,13 +1628,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:364
+#: en/lb_config.1:362
#, no-wrap
msgid "-m|B<--parent-mirror-bootstrap> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:366
+#: en/lb_config.1:364
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 "
@@ -1647,13 +1642,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:366
+#: en/lb_config.1:364
#, no-wrap
msgid "B<--parent-mirror-chroot> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:368
+#: en/lb_config.1:366
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 "
@@ -1661,13 +1656,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:368
+#: en/lb_config.1:366
#, no-wrap
msgid "B<--parent-mirror-chroot-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:370
+#: en/lb_config.1:368
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 "
@@ -1675,13 +1670,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:370
+#: en/lb_config.1:368
#, no-wrap
msgid "B<--parent-mirror-chroot-updates> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:372
+#: en/lb_config.1:370
msgid ""
"sets the location of the debian updates package mirror that will be used to "
"fetch packages in order to build the live system. By default, this is set to "
@@ -1689,13 +1684,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:372
+#: en/lb_config.1:370
#, no-wrap
msgid "B<--parent-mirror-chroot-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:374
+#: en/lb_config.1:372
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 "
@@ -1703,13 +1698,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:374
+#: en/lb_config.1:372
#, no-wrap
msgid "B<--parent-mirror-binary> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:376
+#: en/lb_config.1:374
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 "
@@ -1719,13 +1714,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:376
+#: en/lb_config.1:374
#, no-wrap
msgid "B<--parent-mirror-binary-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:378
+#: en/lb_config.1:376
msgid ""
"sets the location of the debian security package mirror that should end up "
"configured in the final image. By default, 'http://security.debian.org/' is "
@@ -1733,13 +1728,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:378
+#: en/lb_config.1:376
#, no-wrap
msgid "B<--parent-mirror-binary-updates> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:380
+#: en/lb_config.1:378
msgid ""
"sets the location of the debian updates package mirror that should end up "
"configured in the final image. By default, the value of --parent-mirror-"
@@ -1747,13 +1742,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:380
+#: en/lb_config.1:378
#, no-wrap
msgid "B<--parent-mirror-binary-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:382
+#: en/lb_config.1:380
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/"
@@ -1761,13 +1756,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:382
+#: en/lb_config.1:380
#, no-wrap
msgid "B<--parent-mirror-debian-installer> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:384
+#: en/lb_config.1:382
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 "
@@ -1775,13 +1770,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:384
+#: en/lb_config.1:382
#, no-wrap
msgid "B<--mirror-bootstrap> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:386
+#: en/lb_config.1:384
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/"
@@ -1789,13 +1784,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:386
+#: en/lb_config.1:384
#, no-wrap
msgid "B<--mirror-chroot> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:388
+#: en/lb_config.1:386
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 "
@@ -1803,13 +1798,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:388
+#: en/lb_config.1:386
#, no-wrap
msgid "B<--mirror-chroot-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:390
+#: en/lb_config.1:388
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 "
@@ -1817,13 +1812,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:390
+#: en/lb_config.1:388
#, no-wrap
msgid "B<--mirror-chroot-updates> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:392
+#: en/lb_config.1:390
msgid ""
"sets the location of the debian updates package mirror that will be used to "
"fetch packages of the derivative in order to build the live system. By "
@@ -1831,13 +1826,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:392
+#: en/lb_config.1:390
#, no-wrap
msgid "B<--mirror-chroot-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:394
+#: en/lb_config.1:392
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 "
@@ -1845,13 +1840,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:394
+#: en/lb_config.1:392
#, no-wrap
msgid "B<--mirror-binary> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:396
+#: en/lb_config.1:394
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. "
@@ -1861,52 +1856,52 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:396
+#: en/lb_config.1:394
#, no-wrap
msgid "B<--mirror-binary-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:398
+#: en/lb_config.1:396
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:398
+#: en/lb_config.1:396
#, no-wrap
msgid "B<--mirror-binary-updates> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:400
+#: en/lb_config.1:398
msgid ""
"sets the location of the derivatives updates package mirror that should end "
"up configured in the final image."
msgstr ""
#. type: IP
-#: en/lb_config.1:400
+#: en/lb_config.1:398
#, no-wrap
msgid "B<--mirror-binary-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:402
+#: en/lb_config.1:400
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:402
+#: en/lb_config.1:400
#, no-wrap
msgid "B<--mirror-debian-installer> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:404
+#: en/lb_config.1:402
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 "
@@ -1914,65 +1909,65 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:404
+#: en/lb_config.1:402
#, no-wrap
msgid "B<--mode> debian|emdebian|progress|ubuntu"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:406
+#: en/lb_config.1:404
msgid ""
"defines a global mode to load project specific defaults. By default this is "
"set to debian."
msgstr ""
#. type: IP
-#: en/lb_config.1:406
+#: en/lb_config.1:404
#, no-wrap
msgid "B<--system> live|normal"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:408
+#: en/lb_config.1:406
msgid ""
"defines if the resulting system image should a live system or a normal, non-"
"live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:408
+#: en/lb_config.1:406
#, no-wrap
msgid "B<--net-root-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:410
+#: en/lb_config.1:408
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:410
+#: en/lb_config.1:408
#, no-wrap
msgid "B<--net-root-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:412
+#: en/lb_config.1:410
msgid ""
"sets additional options for mounting the root filesystem in netboot images "
"and is by default empty."
msgstr ""
#. type: IP
-#: en/lb_config.1:412
+#: en/lb_config.1:410
#, no-wrap
msgid "B<--net-root-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:414
+#: en/lb_config.1:412
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 "
@@ -1981,13 +1976,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:414
+#: en/lb_config.1:412
#, no-wrap
msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:416
+#: en/lb_config.1:414
msgid ""
"sets the IP or hostname that will be configured in the bootloader "
"configuration for the root filesystem of your netboot image. This defaults "
@@ -1995,38 +1990,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:416
+#: en/lb_config.1:414
#, no-wrap
msgid "B<--net-cow-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:418
+#: en/lb_config.1:416
msgid ""
"defines the filesystem type for the copy-on-write layer and defaults to nfs."
msgstr ""
#. type: IP
-#: en/lb_config.1:418
+#: en/lb_config.1:416
#, no-wrap
msgid "B<--net-cow-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:420
+#: en/lb_config.1:418
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:420
+#: en/lb_config.1:418
#, no-wrap
msgid "B<--net-cow-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:422
+#: en/lb_config.1:420
msgid ""
"defines the path to client writable filesystem. Anywhere that "
"I<client_mac_address> is specified in the path live-boot will substitute the "
@@ -2034,28 +2029,28 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:425
+#: en/lb_config.1:423
msgid "Example:"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:427
+#: en/lb_config.1:425
msgid "/export/hosts/client_mac_address"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:429
+#: en/lb_config.1:427
msgid "/export/hosts/00-16-D3-33-92-E8"
msgstr ""
#. type: IP
-#: en/lb_config.1:429
+#: en/lb_config.1:427
#, no-wrap
msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:431
+#: en/lb_config.1:429
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 "
@@ -2063,13 +2058,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:431
+#: en/lb_config.1:429
#, no-wrap
msgid "B<--net-tarball> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:433
+#: en/lb_config.1:431
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 "
@@ -2077,51 +2072,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:433 en/live-build.7:40
+#: en/lb_config.1:431 en/live-build.7:40
#, no-wrap
msgid "B<--quiet>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:435
+#: en/lb_config.1:433
msgid "reduces the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:435
+#: en/lb_config.1:433
#, no-wrap
msgid "B<--archives> I<ARCHIVE>|\"I<ARCHIVES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:437
+#: en/lb_config.1:435
msgid ""
"enables one of available third-party archive configurations in /usr/share/"
"live/build/archives."
msgstr ""
#. type: IP
-#: en/lb_config.1:437
-#, no-wrap
-msgid "B<--root-command> sudo"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_config.1:439
-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, "
-"call the individual live-build command with sudo itself."
-msgstr ""
-
-#. type: IP
-#: en/lb_config.1:439
+#: en/lb_config.1:435
#, no-wrap
msgid "B<--use-fakeroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:441
+#: en/lb_config.1:437
msgid ""
"controls if live-build should utilize fakeroot and fakechroot to try and "
"avoid requiring root privillages where possible. By default, this option is "
@@ -2129,13 +2110,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:441
+#: en/lb_config.1:437
#, no-wrap
msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:443
+#: en/lb_config.1:439
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. "
@@ -2145,37 +2126,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:443
+#: en/lb_config.1:439
#, no-wrap
msgid "B<--parent-archive-areas> I<PARENT_ARCHIVE_AREA>|\"I<PARENT_ARCHIVE_AREAS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:445
+#: en/lb_config.1:441
msgid "defines the archive areas for derivatives of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:445
+#: en/lb_config.1:441
#, no-wrap
msgid "B<--security> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:447
+#: en/lb_config.1:443
msgid ""
"defines if the security repositories specified in the security mirror "
"options should be used or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:447
+#: en/lb_config.1:443
#, no-wrap
msgid "B<--source> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:449
+#: en/lb_config.1:445
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 "
@@ -2185,24 +2166,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:449
+#: en/lb_config.1:445
#, no-wrap
msgid "-s|B<--source-images> iso|netboot|tar|hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:451
+#: en/lb_config.1:447
msgid "defines the image type for the source image. Default is tar."
msgstr ""
#. type: IP
-#: en/lb_config.1:451
+#: en/lb_config.1:447
#, no-wrap
msgid "B<--firmware-binary> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:453
+#: en/lb_config.1:449
msgid ""
"defines if firmware packages should be automatically included into the "
"binary pool for debian-installer. Note that only firmware packages available "
@@ -2213,13 +2194,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:453
+#: en/lb_config.1:449
#, no-wrap
msgid "B<--firmware-chroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:455
+#: en/lb_config.1:451
msgid ""
"defines if firmware packages should be automatically included into the live "
"image. Note that only firmware packages available within the configured "
@@ -2229,65 +2210,65 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:455
+#: en/lb_config.1:451
#, no-wrap
msgid "B<--swap-file-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:457
+#: en/lb_config.1:453
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:457
+#: en/lb_config.1:453
#, no-wrap
msgid "B<--swap-file-size> I<MB>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:459
+#: en/lb_config.1:455
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:459
+#: en/lb_config.1:455
#, no-wrap
msgid "B<--tasksel> apt|aptitude|tasksel"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:461
+#: en/lb_config.1:457
msgid ""
"selects which program is used to install tasks. By default, this is set to "
"tasksel."
msgstr ""
#. type: IP
-#: en/lb_config.1:461
+#: en/lb_config.1:457
#, no-wrap
msgid "B<--templates> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:463
+#: en/lb_config.1:459
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:463
+#: en/lb_config.1:459
#, no-wrap
msgid "B<--hdd-size> MB"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:465
+#: en/lb_config.1:461
msgid ""
"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 "
@@ -2295,39 +2276,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:465
+#: en/lb_config.1:461
#, no-wrap
msgid "B<--updates> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:467
+#: en/lb_config.1:463
msgid ""
"defines if debian updates package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:467
+#: en/lb_config.1:463
#, no-wrap
msgid "B<--backports> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:469
+#: en/lb_config.1:465
msgid ""
"defines if debian backports package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:469
+#: en/lb_config.1:465
#, no-wrap
msgid "B<--exposed-root> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:471
+#: en/lb_config.1:467
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 "
@@ -2335,37 +2316,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:471 en/live-build.7:42
+#: en/lb_config.1:467 en/live-build.7:42
#, no-wrap
msgid "B<--verbose>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:473
+#: en/lb_config.1:469
msgid "increases the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:473
+#: en/lb_config.1:469
#, no-wrap
msgid "B<--win32-loader true|false>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:476
+#: en/lb_config.1:472
msgid "defines if win32-loader should be included in the binary image or not."
msgstr ""
#. type: SH
-#: en/lb_config.1:477
+#: en/lb_config.1:473
#, no-wrap
msgid "ENVIRONMENT"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:480
+#: en/lb_config.1:476
msgid ""
"Currently, command line switches can also be specified through the "
"corresponding environment variable. However, this generally should not be "
@@ -2379,20 +2360,20 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:484
+#: en/lb_config.1:480
#, no-wrap
msgid "B<auto/config>"
msgstr ""
#. type: IP
-#: en/lb_config.1:485
+#: en/lb_config.1:481
#, no-wrap
msgid "B</etc/live/build.conf, /etc/live/build/*>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:488
+#: en/lb_config.1:484
msgid ""
"An optional, global configuration file for B<lb config> variables. It is "
"useful to specify a few system wide defaults, like "
@@ -2401,11 +2382,11 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:493 en/live-build.7:221
+#: en/lb_config.1:489 en/live-build.7:221
msgid "I<live-boot>(7)"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:495 en/live-build.7:223
+#: en/lb_config.1:491 en/live-build.7:223
msgid "I<live-config>(7)"
msgstr ""
diff --git a/manpages/po/de/lb_source.1.po b/manpages/po/de/lb_source.1.po
index 73dd73752..9575a5ef3 100644
--- a/manpages/po/de/lb_source.1.po
+++ b/manpages/po/de/lb_source.1.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a10-1\n"
-"POT-Creation-Date: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <daniel@debian.org>\n"
"Language-Team: none\n"
@@ -28,8 +28,8 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
-msgstr "15.02.2013"
+msgid "2013-02-18"
+msgstr "18.02.2013"
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
@@ -65,7 +65,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -73,7 +73,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -81,7 +81,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -96,7 +96,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -104,21 +104,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -126,7 +126,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -136,7 +136,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -144,7 +144,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -155,7 +155,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -163,7 +163,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/po/de/lb_testroot.1.po b/manpages/po/de/lb_testroot.1.po
index 4a2565ea7..538aa9266 100644
--- a/manpages/po/de/lb_testroot.1.po
+++ b/manpages/po/de/lb_testroot.1.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a10-1\n"
-"POT-Creation-Date: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <daniel@debian.org>\n"
"Language-Team: none\n"
@@ -28,8 +28,8 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
-msgstr "15.02.2013"
+msgid "2013-02-18"
+msgstr "18.02.2013"
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
@@ -65,7 +65,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -73,7 +73,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -81,7 +81,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -96,7 +96,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -104,21 +104,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -126,7 +126,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -136,7 +136,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -144,7 +144,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -155,7 +155,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -163,7 +163,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/po/de/live-build.7.po b/manpages/po/de/live-build.7.po
index 6f71c13f2..91412378a 100644
--- a/manpages/po/de/live-build.7.po
+++ b/manpages/po/de/live-build.7.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a10-1\n"
-"POT-Creation-Date: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <daniel@debian.org>\n"
"Language-Team: none\n"
@@ -28,8 +28,8 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
-msgstr "15.02.2013"
+msgid "2013-02-18"
+msgstr "18.02.2013"
#. type: TH
#: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
@@ -65,7 +65,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -73,7 +73,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -81,7 +81,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -89,7 +89,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -97,14 +97,14 @@ msgstr ""
#. type: Plain text
#: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -112,7 +112,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -122,7 +122,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -130,7 +130,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -141,7 +141,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -149,7 +149,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
@@ -157,36 +157,36 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:314 en/live-build.7:36
+#: en/lb_config.1:312 en/live-build.7:36
#, no-wrap
msgid "B<--debug>"
msgstr ""
#. type: IP
-#: en/lb_config.1:326 en/live-build.7:38
+#: en/lb_config.1:324 en/live-build.7:38
#, no-wrap
msgid "B<--force>"
msgstr ""
#. type: IP
-#: en/lb_config.1:433 en/live-build.7:40
+#: en/lb_config.1:431 en/live-build.7:40
#, no-wrap
msgid "B<--quiet>"
msgstr ""
#. type: IP
-#: en/lb_config.1:471 en/live-build.7:42
+#: en/lb_config.1:467 en/live-build.7:42
#, no-wrap
msgid "B<--verbose>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:493 en/live-build.7:221
+#: en/lb_config.1:489 en/live-build.7:221
msgid "I<live-boot>(7)"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:495 en/live-build.7:223
+#: en/lb_config.1:491 en/live-build.7:223
msgid "I<live-config>(7)"
msgstr ""
diff --git a/manpages/pot/lb.1.pot b/manpages/pot/lb.1.pot
index 15e8c18eb..9f406ac23 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: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,7 +29,7 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
+msgid "2013-02-18"
msgstr ""
#. type: TH
@@ -81,7 +81,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -96,7 +96,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -112,7 +112,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -127,7 +127,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -135,21 +135,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -157,7 +157,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -167,7 +167,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -175,7 +175,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -186,7 +186,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -194,7 +194,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/pot/lb_binary.1.pot b/manpages/pot/lb_binary.1.pot
index 3b75287da..57025a908 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: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,7 +29,7 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
+msgid "2013-02-18"
msgstr ""
#. type: TH
@@ -66,7 +66,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -74,7 +74,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -82,7 +82,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -97,7 +97,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -105,21 +105,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -127,7 +127,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -137,7 +137,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -145,7 +145,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -156,7 +156,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -164,7 +164,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/pot/lb_bootstrap.1.pot b/manpages/pot/lb_bootstrap.1.pot
index b72a8d63c..226f6d228 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: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,7 +29,7 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
+msgid "2013-02-18"
msgstr ""
#. type: TH
@@ -66,7 +66,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -74,7 +74,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -82,7 +82,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -97,7 +97,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -105,21 +105,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -127,7 +127,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -137,7 +137,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -145,7 +145,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -156,7 +156,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -164,7 +164,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/pot/lb_build.1.pot b/manpages/pot/lb_build.1.pot
index a58426627..fef3acfb7 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: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,7 +29,7 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
+msgid "2013-02-18"
msgstr ""
#. type: TH
@@ -66,7 +66,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -74,7 +74,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -82,7 +82,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -90,7 +90,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -98,21 +98,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -120,7 +120,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -130,7 +130,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -138,7 +138,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -149,7 +149,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -157,7 +157,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/pot/lb_chroot.1.pot b/manpages/pot/lb_chroot.1.pot
index f20757b35..d0a062701 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: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,7 +29,7 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
+msgid "2013-02-18"
msgstr ""
#. type: TH
@@ -66,7 +66,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -74,7 +74,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -82,7 +82,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -97,7 +97,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -105,21 +105,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -127,7 +127,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -137,7 +137,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -145,7 +145,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -156,7 +156,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -164,7 +164,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/pot/lb_clean.1.pot b/manpages/pot/lb_clean.1.pot
index 1744283ce..16d6eeaa7 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: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,7 +29,7 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
+msgid "2013-02-18"
msgstr ""
#. type: TH
@@ -66,7 +66,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -74,7 +74,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -82,7 +82,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -90,7 +90,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -98,21 +98,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -120,7 +120,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -130,7 +130,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -138,7 +138,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -149,7 +149,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -157,7 +157,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/pot/lb_config.1.pot b/manpages/pot/lb_config.1.pot
index 09dbc10de..c3b62bc8c 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: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,7 +29,7 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
+msgid "2013-02-18"
msgstr ""
#. type: TH
@@ -66,7 +66,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -74,7 +74,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -82,7 +82,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -90,7 +90,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -98,21 +98,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -120,7 +120,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -130,7 +130,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -138,7 +138,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -149,7 +149,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -157,7 +157,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
@@ -653,89 +653,84 @@ msgstr ""
#. type: Plain text
#: en/lb_config.1:201
-msgid " [B<--root-command> sudo]"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_config.1:203
msgid " [B<--use-fakeroot> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:205
+#: en/lb_config.1:203
msgid " [B<--archives> I<ARCHIVE>|I<\"ARCHIVES\">]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:207
+#: en/lb_config.1:205
msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:209
+#: en/lb_config.1:207
msgid ""
" [B<--parent-archive-areas> I<PARENT_ARCHIVE_AREA>|I<\"PARENT_ARCHIVE_AREAS"
"\">]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:211
+#: en/lb_config.1:209
msgid " [B<--security> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:213
+#: en/lb_config.1:211
msgid " [B<--source> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:215
+#: en/lb_config.1:213
msgid " [-s|B<--source-images> iso|netboot|tar|hdd]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:217
+#: en/lb_config.1:215
msgid " [B<--tasksel> apt|aptitude|tasksel]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:219
+#: en/lb_config.1:217
msgid " [B<--templates> I<PATH>]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:221
+#: en/lb_config.1:219
msgid " [B<--hdd-size >I<MB>]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:223
+#: en/lb_config.1:221
msgid " [B<--updates> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:225
+#: en/lb_config.1:223
msgid " [B<--backports> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:227
+#: en/lb_config.1:225
msgid " [B<--exposed-root> true|false]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:229
+#: en/lb_config.1:227
msgid " [B<--verbose>]"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:232
+#: en/lb_config.1:230
msgid " [B<--win32-loader true|false]>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:235
+#: en/lb_config.1:233
msgid ""
"B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
"Debian Live tool suite."
@@ -743,7 +738,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:238
+#: en/lb_config.1:236
msgid ""
"B<lb config> populates the configuration directory for live-build. By "
"default, this directory is named 'config' and is created in the current "
@@ -752,7 +747,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:241
+#: en/lb_config.1:239
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 "
@@ -768,7 +763,7 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:244
+#: en/lb_config.1:242
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 "
@@ -777,26 +772,26 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:246
+#: en/lb_config.1:244
#, no-wrap
msgid "B<--apt> apt|aptitude"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:248
+#: en/lb_config.1:246
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:248
+#: en/lb_config.1:246
#, no-wrap
msgid "B<--apt-ftp-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:250
+#: en/lb_config.1:248
msgid ""
"sets the ftp proxy to be used by apt. By default, this is empty. Note that "
"this variable is only for the proxy that gets used by apt internally within "
@@ -804,13 +799,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:250
+#: en/lb_config.1:248
#, no-wrap
msgid "B<--apt-http-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:252
+#: en/lb_config.1:250
msgid ""
"sets the http proxy to be used by apt. By default, this is empty. Note that "
"this variable is only for the proxy that gets used by apt internally within "
@@ -818,26 +813,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:252
+#: en/lb_config.1:250
#, no-wrap
msgid "B<--apt-indices> true|false|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:254
+#: en/lb_config.1:252
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:254
+#: en/lb_config.1:252
#, no-wrap
msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:256
+#: en/lb_config.1:254
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 "
@@ -845,13 +840,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:256
+#: en/lb_config.1:254
#, no-wrap
msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:258
+#: en/lb_config.1:256
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 "
@@ -859,13 +854,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:258
+#: en/lb_config.1:256
#, no-wrap
msgid "B<--apt-pipeline> I<DEPTH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:260
+#: en/lb_config.1:258
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 "
@@ -877,51 +872,51 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:260
+#: en/lb_config.1:258
#, no-wrap
msgid "B<--apt-recommends> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:262
+#: en/lb_config.1:260
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:262
+#: en/lb_config.1:260
#, no-wrap
msgid "B<--apt-secure> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:264
+#: en/lb_config.1:262
msgid ""
"defines if apt should check repository signatures. This is true by default."
msgstr ""
#. type: IP
-#: en/lb_config.1:264
+#: en/lb_config.1:262
#, no-wrap
msgid "B<--apt-source-archives> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:266
+#: en/lb_config.1:264
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:266
+#: en/lb_config.1:264
#, no-wrap
msgid "-a|B<--architectures> I<ARCHITECTURE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:268
+#: en/lb_config.1:266
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 "
@@ -932,13 +927,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:268
+#: en/lb_config.1:266
#, no-wrap
msgid "-b|B<--binary-images> iso|iso-hybrid|netboot|tar|hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:270
+#: en/lb_config.1:268
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 "
@@ -946,13 +941,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:270
+#: en/lb_config.1:268
#, no-wrap
msgid "B<--binary-filesystem> fat16|fat32|ext2|ext3|ext4"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:272
+#: en/lb_config.1:270
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 "
@@ -965,24 +960,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:272
+#: en/lb_config.1:270
#, no-wrap
msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:274
+#: en/lb_config.1:272
msgid "sets boot parameters specific to debian-installer, if included."
msgstr ""
#. type: IP
-#: en/lb_config.1:274
+#: en/lb_config.1:272
#, no-wrap
msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:276
+#: en/lb_config.1:274
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 "
@@ -990,13 +985,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:276
+#: en/lb_config.1:274
#, no-wrap
msgid "B<--bootloader> grub|syslinux"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:278
+#: en/lb_config.1:276
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 "
@@ -1009,39 +1004,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:278
+#: en/lb_config.1:276
#, no-wrap
msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:280
+#: en/lb_config.1:278
msgid ""
"defines which program is used to bootstrap the debian chroot, default is "
"debootstrap."
msgstr ""
#. type: IP
-#: en/lb_config.1:280
+#: en/lb_config.1:278
#, no-wrap
msgid "B<--cache> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:282
+#: en/lb_config.1:280
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:282
+#: en/lb_config.1:280
#, no-wrap
msgid "B<--cache-indices> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:284
+#: en/lb_config.1:282
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 "
@@ -1049,13 +1044,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:284
+#: en/lb_config.1:282
#, no-wrap
msgid "B<--cache-packages> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:286
+#: en/lb_config.1:284
msgid ""
"defines if downloaded packages files should be cached which is true by "
"default. Disabling it does save space consumtion in your build directory, "
@@ -1066,13 +1061,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:286
+#: en/lb_config.1:284
#, no-wrap
msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:288
+#: en/lb_config.1:286
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 "
@@ -1082,13 +1077,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:288
+#: en/lb_config.1:286
#, no-wrap
msgid "B<--checksums> md5|sha1|sha256|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:290
+#: en/lb_config.1:288
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 "
@@ -1100,39 +1095,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:290
+#: en/lb_config.1:288
#, no-wrap
msgid "B<--compression> bzip2|gzip|lzip|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:292
+#: en/lb_config.1:290
msgid ""
"defines the compression program to be used to compress tarballs. Defaults to "
"gzip."
msgstr ""
#. type: IP
-#: en/lb_config.1:292
+#: en/lb_config.1:290
#, no-wrap
msgid "B<--config> I<GIT_URL>::I<GIT_ID>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:294
+#: en/lb_config.1:292
msgid ""
"allows to bootstrap a config tree from a git repositories, optionally "
"appended by a Git Id (branch, commit, tag, etc.)."
msgstr ""
#. type: IP
-#: en/lb_config.1:294
+#: en/lb_config.1:292
#, no-wrap
msgid "B<--build-with-chroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:296
+#: en/lb_config.1:294
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. "
@@ -1146,13 +1141,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:296
+#: en/lb_config.1:294
#, no-wrap
msgid "B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:298
+#: en/lb_config.1:296
msgid ""
"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 "
@@ -1163,39 +1158,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:298
+#: en/lb_config.1:296
#, no-wrap
msgid "B<--clean>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:300
+#: en/lb_config.1:298
msgid ""
"minimizes config directory by automatically removing unused and thus empty "
"subdirectories."
msgstr ""
#. type: IP
-#: en/lb_config.1:300
+#: en/lb_config.1:298
#, no-wrap
msgid "-c|B<--conffile> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:302
+#: en/lb_config.1:300
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:302
+#: en/lb_config.1:300
#, no-wrap
msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:304
+#: en/lb_config.1:302
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, "
@@ -1203,13 +1198,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:304
+#: en/lb_config.1:302
#, no-wrap
msgid "B<--debconf-priority> low|medium|high|critical"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:306
+#: en/lb_config.1:304
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 "
@@ -1218,13 +1213,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:306
+#: en/lb_config.1:304
#, no-wrap
msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:308
+#: en/lb_config.1:306
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 "
@@ -1236,13 +1231,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:308
+#: en/lb_config.1:306
#, no-wrap
msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:310
+#: en/lb_config.1:308
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 "
@@ -1251,13 +1246,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:310
+#: en/lb_config.1:308
#, no-wrap
msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:312
+#: en/lb_config.1:310
msgid ""
"sets the filename or URL for an optionally used and included preseeding file "
"for debian-installer. If config/binary_debian-installer/preseed.cfg exists, "
@@ -1265,13 +1260,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:312
+#: en/lb_config.1:310
#, no-wrap
msgid "B<--debian-installer-gui> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:314
+#: en/lb_config.1:312
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, "
@@ -1279,60 +1274,60 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:314 en/live-build.7:36
+#: en/lb_config.1:312 en/live-build.7:36
#, no-wrap
msgid "B<--debug>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:316
+#: en/lb_config.1:314
msgid "turn on debugging informational messages."
msgstr ""
#. type: IP
-#: en/lb_config.1:316
+#: en/lb_config.1:314
#, no-wrap
msgid "-d|B<--distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:318
+#: en/lb_config.1:316
msgid "defines the distribution of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:318
+#: en/lb_config.1:316
#, no-wrap
msgid "-d|B<--parent-distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:320
+#: en/lb_config.1:318
msgid ""
"defines the parent distribution for derivatives of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:320
+#: en/lb_config.1:318
#, no-wrap
msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:322
+#: en/lb_config.1:320
msgid ""
"defines the parent debian-installer distribution for derivatives of the "
"resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:322
+#: en/lb_config.1:320
#, no-wrap
msgid "B<--dump>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:324
+#: en/lb_config.1:322
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 "
@@ -1341,26 +1336,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:324
+#: en/lb_config.1:322
#, no-wrap
msgid "B<--fdisk> fdisk|fdisk.dist"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:326
+#: en/lb_config.1:324
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:326 en/live-build.7:38
+#: en/lb_config.1:324 en/live-build.7:38
#, no-wrap
msgid "B<--force>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:328
+#: en/lb_config.1:326
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-"
@@ -1368,26 +1363,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:328
+#: en/lb_config.1:326
#, no-wrap
msgid "B<--grub-splash> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:330
+#: en/lb_config.1:328
msgid ""
"defines the name of an optional to be included splash screen graphic for the "
"grub bootloader."
msgstr ""
#. type: IP
-#: en/lb_config.1:330
+#: en/lb_config.1:328
#, no-wrap
msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:332
+#: en/lb_config.1:330
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 "
@@ -1396,13 +1391,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:332
+#: en/lb_config.1:330
#, no-wrap
msgid "B<--hooks> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:334
+#: en/lb_config.1:332
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 "
@@ -1410,13 +1405,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:334
+#: en/lb_config.1:332
#, no-wrap
msgid "B<--ignore-system-defaults>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:336
+#: en/lb_config.1:334
msgid ""
"B<lb config> by default reads system defaults from I</etc/live/build.conf> "
"and I</etc/live/build/*> when generating a new live system config directory. "
@@ -1425,13 +1420,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:336
+#: en/lb_config.1:334
#, no-wrap
msgid "B<--initramfs> auto|none|live-boot|casper"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:338
+#: en/lb_config.1:336
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 "
@@ -1442,26 +1437,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:338
+#: en/lb_config.1:336
#, no-wrap
msgid "B<--initramfs-compression> bzip2|gzip|lzma]"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:340
+#: en/lb_config.1:338
msgid ""
"defines the compression program to be used to compress the initramfs. "
"Defaults to gzip."
msgstr ""
#. type: IP
-#: en/lb_config.1:340
+#: en/lb_config.1:338
#, no-wrap
msgid "B<--interactive> shell"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:342
+#: en/lb_config.1:340
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 "
@@ -1475,24 +1470,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:342
+#: en/lb_config.1:340
#, no-wrap
msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:344
+#: en/lb_config.1:342
msgid "defines options to pass to isohybrid."
msgstr ""
#. type: IP
-#: en/lb_config.1:344
+#: en/lb_config.1:342
#, no-wrap
msgid "B<--iso-application> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:346
+#: en/lb_config.1:344
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 "
@@ -1500,13 +1495,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:346
+#: en/lb_config.1:344
#, no-wrap
msgid "B<--iso-preparer> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:348
+#: en/lb_config.1:346
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."
@@ -1515,13 +1510,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:348
+#: en/lb_config.1:346
#, no-wrap
msgid "B<--iso-publisher> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:350
+#: en/lb_config.1:348
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-"
@@ -1530,13 +1525,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:350
+#: en/lb_config.1:348
#, no-wrap
msgid "B<--iso-volume> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:352
+#: en/lb_config.1:350
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 "
@@ -1545,13 +1540,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:352
+#: en/lb_config.1:350
#, no-wrap
msgid "B<--jffs2-eraseblock> I<SIZE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:354
+#: en/lb_config.1:352
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 "
@@ -1561,39 +1556,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:354
+#: en/lb_config.1:352
#, no-wrap
msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:356
+#: en/lb_config.1:354
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:356
+#: en/lb_config.1:354
#, no-wrap
msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:358
+#: en/lb_config.1:356
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:358
+#: en/lb_config.1:356
#, no-wrap
msgid "B<--linux-packages> \"I<PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:360
+#: en/lb_config.1:358
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 "
@@ -1607,26 +1602,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:360
+#: en/lb_config.1:358
#, no-wrap
msgid "B<--losetup> losetup|losetup.orig"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:362
+#: en/lb_config.1:360
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:362
+#: en/lb_config.1:360
#, no-wrap
msgid "B<--memtest> memtest86+|memtest86|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:364
+#: en/lb_config.1:362
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 "
@@ -1634,13 +1629,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:364
+#: en/lb_config.1:362
#, no-wrap
msgid "-m|B<--parent-mirror-bootstrap> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:366
+#: en/lb_config.1:364
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 "
@@ -1648,13 +1643,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:366
+#: en/lb_config.1:364
#, no-wrap
msgid "B<--parent-mirror-chroot> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:368
+#: en/lb_config.1:366
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 "
@@ -1662,13 +1657,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:368
+#: en/lb_config.1:366
#, no-wrap
msgid "B<--parent-mirror-chroot-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:370
+#: en/lb_config.1:368
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 "
@@ -1676,13 +1671,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:370
+#: en/lb_config.1:368
#, no-wrap
msgid "B<--parent-mirror-chroot-updates> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:372
+#: en/lb_config.1:370
msgid ""
"sets the location of the debian updates package mirror that will be used to "
"fetch packages in order to build the live system. By default, this is set to "
@@ -1690,13 +1685,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:372
+#: en/lb_config.1:370
#, no-wrap
msgid "B<--parent-mirror-chroot-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:374
+#: en/lb_config.1:372
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 "
@@ -1704,13 +1699,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:374
+#: en/lb_config.1:372
#, no-wrap
msgid "B<--parent-mirror-binary> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:376
+#: en/lb_config.1:374
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 "
@@ -1720,13 +1715,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:376
+#: en/lb_config.1:374
#, no-wrap
msgid "B<--parent-mirror-binary-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:378
+#: en/lb_config.1:376
msgid ""
"sets the location of the debian security package mirror that should end up "
"configured in the final image. By default, 'http://security.debian.org/' is "
@@ -1734,13 +1729,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:378
+#: en/lb_config.1:376
#, no-wrap
msgid "B<--parent-mirror-binary-updates> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:380
+#: en/lb_config.1:378
msgid ""
"sets the location of the debian updates package mirror that should end up "
"configured in the final image. By default, the value of --parent-mirror-"
@@ -1748,13 +1743,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:380
+#: en/lb_config.1:378
#, no-wrap
msgid "B<--parent-mirror-binary-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:382
+#: en/lb_config.1:380
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/"
@@ -1762,13 +1757,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:382
+#: en/lb_config.1:380
#, no-wrap
msgid "B<--parent-mirror-debian-installer> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:384
+#: en/lb_config.1:382
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 "
@@ -1776,13 +1771,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:384
+#: en/lb_config.1:382
#, no-wrap
msgid "B<--mirror-bootstrap> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:386
+#: en/lb_config.1:384
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/"
@@ -1790,13 +1785,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:386
+#: en/lb_config.1:384
#, no-wrap
msgid "B<--mirror-chroot> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:388
+#: en/lb_config.1:386
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 "
@@ -1804,13 +1799,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:388
+#: en/lb_config.1:386
#, no-wrap
msgid "B<--mirror-chroot-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:390
+#: en/lb_config.1:388
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 "
@@ -1818,13 +1813,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:390
+#: en/lb_config.1:388
#, no-wrap
msgid "B<--mirror-chroot-updates> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:392
+#: en/lb_config.1:390
msgid ""
"sets the location of the debian updates package mirror that will be used to "
"fetch packages of the derivative in order to build the live system. By "
@@ -1832,13 +1827,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:392
+#: en/lb_config.1:390
#, no-wrap
msgid "B<--mirror-chroot-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:394
+#: en/lb_config.1:392
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 "
@@ -1846,13 +1841,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:394
+#: en/lb_config.1:392
#, no-wrap
msgid "B<--mirror-binary> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:396
+#: en/lb_config.1:394
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. "
@@ -1862,52 +1857,52 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:396
+#: en/lb_config.1:394
#, no-wrap
msgid "B<--mirror-binary-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:398
+#: en/lb_config.1:396
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:398
+#: en/lb_config.1:396
#, no-wrap
msgid "B<--mirror-binary-updates> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:400
+#: en/lb_config.1:398
msgid ""
"sets the location of the derivatives updates package mirror that should end "
"up configured in the final image."
msgstr ""
#. type: IP
-#: en/lb_config.1:400
+#: en/lb_config.1:398
#, no-wrap
msgid "B<--mirror-binary-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:402
+#: en/lb_config.1:400
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:402
+#: en/lb_config.1:400
#, no-wrap
msgid "B<--mirror-debian-installer> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:404
+#: en/lb_config.1:402
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 "
@@ -1915,65 +1910,65 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:404
+#: en/lb_config.1:402
#, no-wrap
msgid "B<--mode> debian|emdebian|progress|ubuntu"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:406
+#: en/lb_config.1:404
msgid ""
"defines a global mode to load project specific defaults. By default this is "
"set to debian."
msgstr ""
#. type: IP
-#: en/lb_config.1:406
+#: en/lb_config.1:404
#, no-wrap
msgid "B<--system> live|normal"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:408
+#: en/lb_config.1:406
msgid ""
"defines if the resulting system image should a live system or a normal, non-"
"live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:408
+#: en/lb_config.1:406
#, no-wrap
msgid "B<--net-root-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:410
+#: en/lb_config.1:408
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:410
+#: en/lb_config.1:408
#, no-wrap
msgid "B<--net-root-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:412
+#: en/lb_config.1:410
msgid ""
"sets additional options for mounting the root filesystem in netboot images "
"and is by default empty."
msgstr ""
#. type: IP
-#: en/lb_config.1:412
+#: en/lb_config.1:410
#, no-wrap
msgid "B<--net-root-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:414
+#: en/lb_config.1:412
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 "
@@ -1982,13 +1977,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:414
+#: en/lb_config.1:412
#, no-wrap
msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:416
+#: en/lb_config.1:414
msgid ""
"sets the IP or hostname that will be configured in the bootloader "
"configuration for the root filesystem of your netboot image. This defaults "
@@ -1996,38 +1991,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:416
+#: en/lb_config.1:414
#, no-wrap
msgid "B<--net-cow-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:418
+#: en/lb_config.1:416
msgid ""
"defines the filesystem type for the copy-on-write layer and defaults to nfs."
msgstr ""
#. type: IP
-#: en/lb_config.1:418
+#: en/lb_config.1:416
#, no-wrap
msgid "B<--net-cow-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:420
+#: en/lb_config.1:418
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:420
+#: en/lb_config.1:418
#, no-wrap
msgid "B<--net-cow-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:422
+#: en/lb_config.1:420
msgid ""
"defines the path to client writable filesystem. Anywhere that "
"I<client_mac_address> is specified in the path live-boot will substitute the "
@@ -2035,28 +2030,28 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:425
+#: en/lb_config.1:423
msgid "Example:"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:427
+#: en/lb_config.1:425
msgid "/export/hosts/client_mac_address"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:429
+#: en/lb_config.1:427
msgid "/export/hosts/00-16-D3-33-92-E8"
msgstr ""
#. type: IP
-#: en/lb_config.1:429
+#: en/lb_config.1:427
#, no-wrap
msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:431
+#: en/lb_config.1:429
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 "
@@ -2064,13 +2059,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:431
+#: en/lb_config.1:429
#, no-wrap
msgid "B<--net-tarball> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:433
+#: en/lb_config.1:431
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 "
@@ -2078,51 +2073,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:433 en/live-build.7:40
+#: en/lb_config.1:431 en/live-build.7:40
#, no-wrap
msgid "B<--quiet>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:435
+#: en/lb_config.1:433
msgid "reduces the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:435
+#: en/lb_config.1:433
#, no-wrap
msgid "B<--archives> I<ARCHIVE>|\"I<ARCHIVES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:437
+#: en/lb_config.1:435
msgid ""
"enables one of available third-party archive configurations in /usr/share/"
"live/build/archives."
msgstr ""
#. type: IP
-#: en/lb_config.1:437
-#, no-wrap
-msgid "B<--root-command> sudo"
-msgstr ""
-
-#. type: Plain text
-#: en/lb_config.1:439
-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, "
-"call the individual live-build command with sudo itself."
-msgstr ""
-
-#. type: IP
-#: en/lb_config.1:439
+#: en/lb_config.1:435
#, no-wrap
msgid "B<--use-fakeroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:441
+#: en/lb_config.1:437
msgid ""
"controls if live-build should utilize fakeroot and fakechroot to try and "
"avoid requiring root privillages where possible. By default, this option is "
@@ -2130,13 +2111,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:441
+#: en/lb_config.1:437
#, no-wrap
msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:443
+#: en/lb_config.1:439
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. "
@@ -2146,37 +2127,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:443
+#: en/lb_config.1:439
#, no-wrap
msgid "B<--parent-archive-areas> I<PARENT_ARCHIVE_AREA>|\"I<PARENT_ARCHIVE_AREAS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:445
+#: en/lb_config.1:441
msgid "defines the archive areas for derivatives of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:445
+#: en/lb_config.1:441
#, no-wrap
msgid "B<--security> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:447
+#: en/lb_config.1:443
msgid ""
"defines if the security repositories specified in the security mirror "
"options should be used or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:447
+#: en/lb_config.1:443
#, no-wrap
msgid "B<--source> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:449
+#: en/lb_config.1:445
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 "
@@ -2186,24 +2167,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:449
+#: en/lb_config.1:445
#, no-wrap
msgid "-s|B<--source-images> iso|netboot|tar|hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:451
+#: en/lb_config.1:447
msgid "defines the image type for the source image. Default is tar."
msgstr ""
#. type: IP
-#: en/lb_config.1:451
+#: en/lb_config.1:447
#, no-wrap
msgid "B<--firmware-binary> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:453
+#: en/lb_config.1:449
msgid ""
"defines if firmware packages should be automatically included into the "
"binary pool for debian-installer. Note that only firmware packages available "
@@ -2214,13 +2195,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:453
+#: en/lb_config.1:449
#, no-wrap
msgid "B<--firmware-chroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:455
+#: en/lb_config.1:451
msgid ""
"defines if firmware packages should be automatically included into the live "
"image. Note that only firmware packages available within the configured "
@@ -2230,65 +2211,65 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:455
+#: en/lb_config.1:451
#, no-wrap
msgid "B<--swap-file-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:457
+#: en/lb_config.1:453
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:457
+#: en/lb_config.1:453
#, no-wrap
msgid "B<--swap-file-size> I<MB>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:459
+#: en/lb_config.1:455
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:459
+#: en/lb_config.1:455
#, no-wrap
msgid "B<--tasksel> apt|aptitude|tasksel"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:461
+#: en/lb_config.1:457
msgid ""
"selects which program is used to install tasks. By default, this is set to "
"tasksel."
msgstr ""
#. type: IP
-#: en/lb_config.1:461
+#: en/lb_config.1:457
#, no-wrap
msgid "B<--templates> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:463
+#: en/lb_config.1:459
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:463
+#: en/lb_config.1:459
#, no-wrap
msgid "B<--hdd-size> MB"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:465
+#: en/lb_config.1:461
msgid ""
"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 "
@@ -2296,39 +2277,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:465
+#: en/lb_config.1:461
#, no-wrap
msgid "B<--updates> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:467
+#: en/lb_config.1:463
msgid ""
"defines if debian updates package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:467
+#: en/lb_config.1:463
#, no-wrap
msgid "B<--backports> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:469
+#: en/lb_config.1:465
msgid ""
"defines if debian backports package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:469
+#: en/lb_config.1:465
#, no-wrap
msgid "B<--exposed-root> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:471
+#: en/lb_config.1:467
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 "
@@ -2336,37 +2317,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:471 en/live-build.7:42
+#: en/lb_config.1:467 en/live-build.7:42
#, no-wrap
msgid "B<--verbose>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:473
+#: en/lb_config.1:469
msgid "increases the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:473
+#: en/lb_config.1:469
#, no-wrap
msgid "B<--win32-loader true|false>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:476
+#: en/lb_config.1:472
msgid "defines if win32-loader should be included in the binary image or not."
msgstr ""
#. type: SH
-#: en/lb_config.1:477
+#: en/lb_config.1:473
#, no-wrap
msgid "ENVIRONMENT"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:480
+#: en/lb_config.1:476
msgid ""
"Currently, command line switches can also be specified through the "
"corresponding environment variable. However, this generally should not be "
@@ -2380,20 +2361,20 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:484
+#: en/lb_config.1:480
#, no-wrap
msgid "B<auto/config>"
msgstr ""
#. type: IP
-#: en/lb_config.1:485
+#: en/lb_config.1:481
#, no-wrap
msgid "B</etc/live/build.conf, /etc/live/build/*>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:488
+#: en/lb_config.1:484
msgid ""
"An optional, global configuration file for B<lb config> variables. It is "
"useful to specify a few system wide defaults, like "
@@ -2402,11 +2383,11 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:493 en/live-build.7:221
+#: en/lb_config.1:489 en/live-build.7:221
msgid "I<live-boot>(7)"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:495 en/live-build.7:223
+#: en/lb_config.1:491 en/live-build.7:223
msgid "I<live-config>(7)"
msgstr ""
diff --git a/manpages/pot/lb_source.1.pot b/manpages/pot/lb_source.1.pot
index 078ca4057..77617369d 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: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,7 +29,7 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
+msgid "2013-02-18"
msgstr ""
#. type: TH
@@ -66,7 +66,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -74,7 +74,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -82,7 +82,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -97,7 +97,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -105,21 +105,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -127,7 +127,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -137,7 +137,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -145,7 +145,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -156,7 +156,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -164,7 +164,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/pot/lb_testroot.1.pot b/manpages/pot/lb_testroot.1.pot
index 755289313..acb6be978 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: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,7 +29,7 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
+msgid "2013-02-18"
msgstr ""
#. type: TH
@@ -66,7 +66,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -74,7 +74,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -82,7 +82,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -97,7 +97,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -105,21 +105,21 @@ msgstr ""
#. type: Plain text
#: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
-#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:491 en/lb_source.1:22
+#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:487 en/lb_source.1:22
#: 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_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -127,7 +127,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -137,7 +137,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -145,7 +145,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -156,7 +156,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -164,7 +164,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
diff --git a/manpages/pot/live-build.7.pot b/manpages/pot/live-build.7.pot
index 457cd493d..a4cc8fba7 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: 2013-02-15 12:38+0100\n"
+"POT-Creation-Date: 2013-02-18 11:28+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,7 +29,7 @@ msgstr ""
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
#: en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
-msgid "2013-02-15"
+msgid "2013-02-18"
msgstr ""
#. type: TH
@@ -66,7 +66,7 @@ msgstr ""
#. type: SH
#: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
-#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:233 en/lb_source.1:9
+#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:231 en/lb_source.1:9
#: en/lb_testroot.1:9 en/live-build.7:11
#, no-wrap
msgid "DESCRIPTION"
@@ -74,7 +74,7 @@ msgstr ""
#. type: SH
#: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
-#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:242 en/lb_source.1:14
+#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:240 en/lb_source.1:14
#: en/lb_testroot.1:18 en/live-build.7:20
#, no-wrap
msgid "OPTIONS"
@@ -82,7 +82,7 @@ msgstr ""
#. type: SH
#: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
-#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:482 en/lb_source.1:17
+#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:478 en/lb_source.1:17
#: en/lb_testroot.1:21 en/live-build.7:215
#, no-wrap
msgid "FILES"
@@ -90,7 +90,7 @@ msgstr ""
#. type: SH
#: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
-#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:489 en/lb_source.1:20
+#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:485 en/lb_source.1:20
#: en/lb_testroot.1:24 en/live-build.7:219
#, no-wrap
msgid "SEE ALSO"
@@ -98,14 +98,14 @@ msgstr ""
#. type: Plain text
#: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
-#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:497 en/lb_source.1:24
+#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:493 en/lb_source.1:24
#: en/lb_testroot.1:28 en/live-build.7:225
msgid "This program is a part of live-build."
msgstr ""
#. type: SH
#: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
-#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:498 en/lb_source.1:25
+#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:494 en/lb_source.1:25
#: en/lb_testroot.1:29 en/live-build.7:226
#, no-wrap
msgid "HOMEPAGE"
@@ -113,7 +113,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
-#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:500 en/lb_source.1:27
+#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:496 en/lb_source.1:27
#: en/lb_testroot.1:31 en/live-build.7:228
msgid ""
"More information about live-build and the Debian Live project can be found "
@@ -123,7 +123,7 @@ msgstr ""
#. type: SH
#: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
-#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:501 en/lb_source.1:28
+#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:497 en/lb_source.1:28
#: en/lb_testroot.1:32 en/live-build.7:229
#, no-wrap
msgid "BUGS"
@@ -131,7 +131,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
-#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:503 en/lb_source.1:30
+#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:499 en/lb_source.1:30
#: en/lb_testroot.1:34 en/live-build.7:231
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
@@ -142,7 +142,7 @@ msgstr ""
#. type: SH
#: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
-#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:504 en/lb_source.1:31
+#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:500 en/lb_source.1:31
#: en/lb_testroot.1:35 en/live-build.7:232
#, no-wrap
msgid "AUTHOR"
@@ -150,7 +150,7 @@ msgstr ""
#. type: Plain text
#: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
-#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:505 en/lb_source.1:32
+#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:501 en/lb_source.1:32
#: en/lb_testroot.1:36 en/live-build.7:233
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
@@ -158,36 +158,36 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:314 en/live-build.7:36
+#: en/lb_config.1:312 en/live-build.7:36
#, no-wrap
msgid "B<--debug>"
msgstr ""
#. type: IP
-#: en/lb_config.1:326 en/live-build.7:38
+#: en/lb_config.1:324 en/live-build.7:38
#, no-wrap
msgid "B<--force>"
msgstr ""
#. type: IP
-#: en/lb_config.1:433 en/live-build.7:40
+#: en/lb_config.1:431 en/live-build.7:40
#, no-wrap
msgid "B<--quiet>"
msgstr ""
#. type: IP
-#: en/lb_config.1:471 en/live-build.7:42
+#: en/lb_config.1:467 en/live-build.7:42
#, no-wrap
msgid "B<--verbose>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:493 en/live-build.7:221
+#: en/lb_config.1:489 en/live-build.7:221
msgid "I<live-boot>(7)"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:495 en/live-build.7:223
+#: en/lb_config.1:491 en/live-build.7:223
msgid "I<live-config>(7)"
msgstr ""
diff --git a/scripts/build/binary_chroot b/scripts/build/binary_chroot
index 87986c0a7..fb7c7546a 100755
--- a/scripts/build/binary_chroot
+++ b/scripts/build/binary_chroot
@@ -43,7 +43,7 @@ if [ -f chroot/proc/version ]
then
if [ "${LB_USE_FAKEROOT}" != "true" ]
then
- ${LB_ROOT_COMMAND} umount chroot/proc
+ umount chroot/proc
else
rm -rf chroot/proc
mkdir -p chroot/proc
@@ -54,7 +54,7 @@ if [ -d chroot/sys/kernel ]
then
if [ "${LB_USE_FAKEROOT}" != "true" ]
then
- ${LB_ROOT_COMMAND} umount chroot/sys
+ umount chroot/sys
else
rm -rf chroot/sys
mkdir -p chroot/sys
@@ -81,20 +81,20 @@ fi
Echo_message "This may take a while."
# Removing old chroot
-${LB_ROOT_COMMAND} rm -rf chroot/chroot
-${LB_ROOT_COMMAND} rm -rf chroot.tmp
+rm -rf chroot/chroot
+rm -rf chroot.tmp
# Copying new chroot
if [ -d cache/bootstrap ] && [ "${LB_CHROOT_FILESYSTEM}" != "none" ] && [ "${LB_CHROOT_FILESYSTEM}" != "plain" ]
then
- ${LB_ROOT_COMMAND} mv chroot chroot.tmp
- ${LB_ROOT_COMMAND} cp -a cache/bootstrap chroot
- ${LB_ROOT_COMMAND} touch chroot/chroot.cache
+ mv chroot chroot.tmp
+ cp -a cache/bootstrap chroot
+ touch chroot/chroot.cache
else
- ${LB_ROOT_COMMAND} cp -a chroot chroot.tmp
+ cp -a chroot chroot.tmp
fi
-${LB_ROOT_COMMAND} mv chroot.tmp chroot/chroot
+mv chroot.tmp chroot/chroot
# Handling chroot excludes
if [ -f config/rootfs/excludes ] && [ "${LB_CHROOT_FILESYSTEM}" != "squashfs" ]
@@ -116,10 +116,5 @@ then
esac
fi
-if [ -n "${LB_ROOT_COMMAND}" ]
-then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) chroot
-fi
-
# Creating stage file
Create_stagefile .build/binary_chroot
diff --git a/scripts/build/binary_debian-installer b/scripts/build/binary_debian-installer
index aed689143..39385c3da 100755
--- a/scripts/build/binary_debian-installer
+++ b/scripts/build/binary_debian-installer
@@ -290,12 +290,12 @@ then
Download_file mini.iso ${URL}/mini.iso
mkdir mini.tmp
- ${LB_ROOT_COMMAND} mount -o loop -t iso9660 mini.iso mini.tmp
+ mount -o loop -t iso9660 mini.iso mini.tmp
cp mini.tmp/boot/vmlinuz-${DEFAULT_FLAVOUR} "${DESTDIR}"/"${VMLINUZ_DI}"
cp mini.tmp/boot/initrd.gz "${DESTDIR}"/"${INITRD_DI}"
- ${LB_ROOT_COMMAND} umount mini.tmp
+ umount mini.tmp
rm -rf mini.tmp mini.iso
else
# Downloading debian-installer
diff --git a/scripts/build/binary_hdd b/scripts/build/binary_hdd
index f6fb3d8f1..972058aa5 100755
--- a/scripts/build/binary_hdd
+++ b/scripts/build/binary_hdd
@@ -234,7 +234,7 @@ case "${LB_BINARY_FILESYSTEM}" in
esac
mkdir -p chroot/binary.tmp
-${LB_ROOT_COMMAND} mount ${FREELO} chroot/binary.tmp
+mount ${FREELO} chroot/binary.tmp
cp -r -T ${CP_OPTIONS} binary/ chroot/binary.tmp
FIXME()
@@ -268,7 +268,7 @@ EOF
fi
}
-${LB_ROOT_COMMAND} umount chroot/binary.tmp
+umount chroot/binary.tmp
rmdir chroot/binary.tmp
if [ "${LB_BOOTLOADER}" = "syslinux" ]
diff --git a/scripts/build/binary_rootfs b/scripts/build/binary_rootfs
index 3dfdeb2c1..10d77c55e 100755
--- a/scripts/build/binary_rootfs
+++ b/scripts/build/binary_rootfs
@@ -74,12 +74,7 @@ do
# Restoring old cache
mkdir -p binary/"${INITFS}"
- ${LB_ROOT_COMMAND} cp -a cache/binary_rootfs/filesystem.* binary/"${INITFS}"
-
- if [ -n "${LB_ROOT_COMMAND}" ]
- then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) binary
- fi
+ cp -a cache/binary_rootfs/filesystem.* binary/"${INITFS}"
# Creating stage file
Create_stagefile .build/binary_rootfs
@@ -132,7 +127,7 @@ case "${LB_CHROOT_FILESYSTEM}" in
Chroot chroot "mkfs.${LB_CHROOT_FILESYSTEM} -F -b 1024 -N ${REAL_INODES} -m 0 filesystem.${LB_CHROOT_FILESYSTEM}"
mkdir -p filesystem.tmp
- ${LB_ROOT_COMMAND} mount -o loop chroot/filesystem.${LB_CHROOT_FILESYSTEM} filesystem.tmp
+ mount -o loop chroot/filesystem.${LB_CHROOT_FILESYSTEM} filesystem.tmp
cp -a chroot/chroot/* filesystem.tmp
if [ "${FAKE_MTAB}" = "true" ]
@@ -140,7 +135,7 @@ case "${LB_CHROOT_FILESYSTEM}" in
Chroot chroot "rm -f /etc/mtab"
fi
- ${LB_ROOT_COMMAND} umount filesystem.tmp
+ umount filesystem.tmp
rmdir filesystem.tmp
# Move image
@@ -202,10 +197,10 @@ case "${LB_CHROOT_FILESYSTEM}" in
mkfs.${LB_CHROOT_FILESYSTEM} -F -b 1024 -N ${REAL_INODES} -m 0 binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}
mkdir -p filesystem.tmp
- ${LB_ROOT_COMMAND} mount -o loop binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM} filesystem.tmp
+ mount -o loop binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM} filesystem.tmp
cp -a chroot/* filesystem.tmp
- ${LB_ROOT_COMMAND} umount filesystem.tmp
+ umount filesystem.tmp
rmdir filesystem.tmp
;;
esac
@@ -383,8 +378,8 @@ case "${LB_CHROOT_FILESYSTEM}" in
esac
# Move image
- ${LB_ROOT_COMMAND} mv chroot/filesystem.squashfs binary/${INITFS}
- ${LB_ROOT_COMMAND} rm -f chroot/squashfs.sort
+ mv chroot/filesystem.squashfs binary/${INITFS}
+ rm -f chroot/squashfs.sort
if [ -e chroot/chroot.cache ]
then
@@ -430,7 +425,7 @@ case "${LB_CHROOT_FILESYSTEM}" in
Remove_package
fi
- ${LB_ROOT_COMMAND} chmod 0644 binary/${INITFS}/filesystem.squashfs
+ chmod 0644 binary/${INITFS}/filesystem.squashfs
;;
false)
@@ -449,11 +444,6 @@ case "${LB_CHROOT_FILESYSTEM}" in
;;
esac
- if [ -n "${LB_ROOT_COMMAND}" ]
- then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) binary/${INITFS}
- fi
-
# Saving cache
Save_cache cache/packages.binary
;;
@@ -488,12 +478,7 @@ do
if [ "${LB_CHROOT_FILESYSTEM}" != "none" ]
then
- ${LB_ROOT_COMMAND} cp -a binary/"${INITFS}"/filesystem.* cache/binary_rootfs
- fi
-
- if [ -n "${LB_ROOT_COMMAND}" ]
- then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) cache/binary_rootfs
+ cp -a binary/"${INITFS}"/filesystem.* cache/binary_rootfs
fi
fi
done
diff --git a/scripts/build/bootstrap_cache b/scripts/build/bootstrap_cache
index 7eae975fe..30e876d22 100755
--- a/scripts/build/bootstrap_cache
+++ b/scripts/build/bootstrap_cache
@@ -50,12 +50,7 @@ do
rm -rf chroot
# Restoring old cache
- ${LB_ROOT_COMMAND} cp -a cache/bootstrap chroot
-
- if [ -n "${LB_ROOT_COMMAND}" ]
- then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) chroot
- fi
+ cp -a cache/bootstrap chroot
# Creating stage file
Create_stagefile .build/bootstrap_cache.restore
@@ -81,12 +76,7 @@ do
mkdir -p cache
- ${LB_ROOT_COMMAND} cp -a chroot cache/bootstrap
-
- if [ -n "${LB_ROOT_COMMAND}" ]
- then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) cache/bootstrap
- fi
+ cp -a chroot cache/bootstrap
# Creating stage file
Create_stagefile .build/bootstrap_cache.save
diff --git a/scripts/build/bootstrap_cdebootstrap b/scripts/build/bootstrap_cdebootstrap
index 6822629ce..d516b55ca 100755
--- a/scripts/build/bootstrap_cdebootstrap
+++ b/scripts/build/bootstrap_cdebootstrap
@@ -97,12 +97,7 @@ then
fi
Echo_breakage "Running ${LB_BOOTSTRAP} (download-only)... "
- ${LB_ROOT_COMMAND} ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} --download-only "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
-
- if [ -n "${LB_ROOT_COMMAND}" ]
- then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) chroot
- fi
+ ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} --download-only "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
# Removing old cache
rm -f cache/packages.bootstrap/*.deb
@@ -123,18 +118,13 @@ then
fi
Echo_message "Bootstrap will be foreign"
- ${LB_ROOT_COMMAND} ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} --foreign "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
+ ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} --foreign "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
Echo_message "Running debootstrap second stage under QEMU"
cp ${LB_BOOTSTRAP_QEMU_STATIC} chroot/usr/bin
Chroot chroot /bin/sh /sbin/cdebootstrap-foreign
else
- ${LB_ROOT_COMMAND} ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
- fi
-
- if [ -n "${LB_ROOT_COMMAND}" ]
- then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) chroot
+ ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
fi
# Deconfiguring cdebootstrap configurations
diff --git a/scripts/build/bootstrap_debootstrap b/scripts/build/bootstrap_debootstrap
index ebfd7bf61..5f7df4b09 100755
--- a/scripts/build/bootstrap_debootstrap
+++ b/scripts/build/bootstrap_debootstrap
@@ -101,12 +101,7 @@ then
fi
Echo_breakage "Running debootstrap (download-only)... "
- ${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} --download-only "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
-
- if [ -n "${LB_ROOT_COMMAND}" ]
- then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) chroot
- fi
+ debootstrap ${DEBOOTSTRAP_OPTIONS} --download-only "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
# Removing old cache
rm -f cache/packages.bootstrap/*.deb
@@ -127,18 +122,13 @@ then
fi
Echo_message "Bootstrap will be foreign"
- ${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} --foreign "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
+ debootstrap ${DEBOOTSTRAP_OPTIONS} --foreign "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
Echo_message "Running debootstrap second stage under QEMU"
cp ${LB_BOOTSTRAP_QEMU_STATIC} chroot/usr/bin
Chroot chroot /bin/sh /debootstrap/debootstrap --second-stage
else
- ${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
- fi
-
- if [ -n "${LB_ROOT_COMMAND}" ]
- then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) chroot
+ debootstrap ${DEBOOTSTRAP_OPTIONS} "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
fi
# Deconfiguring debootstrap configurations
diff --git a/scripts/build/chroot_cache b/scripts/build/chroot_cache
index 16ff49260..98d5a6de3 100755
--- a/scripts/build/chroot_cache
+++ b/scripts/build/chroot_cache
@@ -47,12 +47,7 @@ do
rm -rf chroot
# Restoring old cache
- ${LB_ROOT_COMMAND} cp -a cache/chroot chroot
-
- if [ -n "${LB_ROOT_COMMAND}" ]
- then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) chroot
- fi
+ cp -a cache/chroot chroot
# Creating stage file
Create_stagefile .build/chroot_cache.restore
@@ -77,12 +72,7 @@ do
mkdir -p cache
- ${LB_ROOT_COMMAND} cp -a chroot cache/chroot
-
- if [ -n "${LB_ROOT_COMMAND}" ]
- then
- ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) cache/chroot
- fi
+ cp -a chroot cache/chroot
# Creating stage file
Create_stagefile .build/chroot_cache.save
diff --git a/scripts/build/chroot_devpts b/scripts/build/chroot_devpts
index 2f8aa4b63..6b1a348a0 100755
--- a/scripts/build/chroot_devpts
+++ b/scripts/build/chroot_devpts
@@ -49,7 +49,7 @@ case "${1}" in
mkdir -p chroot/dev/pts
# Mounting /dev/pts
- ${LB_ROOT_COMMAND} mount devpts-live -t devpts chroot/dev/pts || true
+ mount devpts-live -t devpts chroot/dev/pts || true
fi
# Creating stage file
@@ -70,9 +70,9 @@ case "${1}" in
then
if grep -qs "$(pwd)/chroot/dev/pts" /proc/mounts || Find_files chroot/dev/pts/*
then
- ${LB_ROOT_COMMAND} umount chroot/dev/pts
+ umount chroot/dev/pts
else
- ${LB_ROOT_COMMAND} umount -f chroot/dev/pts > /dev/null 2>&1 || true
+ umount -f chroot/dev/pts > /dev/null 2>&1 || true
fi
fi
diff --git a/scripts/build/chroot_dpkg b/scripts/build/chroot_dpkg
index b9fa840e0..c67d8eb96 100755
--- a/scripts/build/chroot_dpkg
+++ b/scripts/build/chroot_dpkg
@@ -64,10 +64,10 @@ EOF
# samhain
if [ -e /var/state/samhain/samhain_file ]
then
- ${LB_ROOT_COMMAND} mv /var/state/samhain/samhain_file /var/state/samhain/samhain_file.orig
+ mv /var/state/samhain/samhain_file /var/state/samhain/samhain_file.orig
else
- ${LB_ROOT_COMMAND} mkdir -p /var/state/samhain
- ${LB_ROOT_COMMAND} touch /var/state/samhain/samhain_file
+ mkdir -p /var/state/samhain
+ touch /var/state/samhain/samhain_file
fi
# flash-kernel
@@ -96,11 +96,11 @@ EOF
# samhain
if [ -e /var/state/samhain/samhain_file.orig ]
then
- ${LB_ROOT_COMMAND} mv /var/state/samhain/samhain_file.orig /var/state/samhain/samhain_file
+ mv /var/state/samhain/samhain_file.orig /var/state/samhain/samhain_file
elif [ -d /var/state/samhain ]
then
- ${LB_ROOT_COMMAND} rm -f /var/state/samhain/samhain_file
- ${LB_ROOT_COMMAND} rmdir --ignore-fail-on-non-empty /var/state/samhain || true
+ rm -f /var/state/samhain/samhain_file
+ rmdir --ignore-fail-on-non-empty /var/state/samhain || true
fi
# Restore start-stop-daemon program
diff --git a/scripts/build/chroot_hacks b/scripts/build/chroot_hacks
index e419576a5..bbf02f930 100755
--- a/scripts/build/chroot_hacks
+++ b/scripts/build/chroot_hacks
@@ -104,11 +104,6 @@ case "${LB_INITRAMFS_COMPRESSION}" in
;;
esac
-if [ -n "${LB_ROOT_COMMAND}" ]
-then
- ${LB_ROOT_COMMAND} chown -R --quiet $(whoami):$(whoami) chroot
-fi
-
case "${LB_INITRAMFS}" in
casper)
ID="999"
diff --git a/scripts/build/chroot_proc b/scripts/build/chroot_proc
index 96437e563..99dd81178 100755
--- a/scripts/build/chroot_proc
+++ b/scripts/build/chroot_proc
@@ -49,7 +49,7 @@ case "${1}" in
mkdir -p chroot/proc
# Mounting /proc
- ${LB_ROOT_COMMAND} mount proc-live -t proc chroot/proc
+ mount proc-live -t proc chroot/proc
else
rm -rf chroot/proc
ln -s /proc chroot/
@@ -73,14 +73,14 @@ case "${1}" in
# Workaround binfmt-support /proc locking
if [ -e chroot/proc/sys/fs/binfmt_misc/status ]
then
- ${LB_ROOT_COMMAND} umount chroot/proc/sys/fs/binfmt_misc
+ umount chroot/proc/sys/fs/binfmt_misc
fi
# Unmounting /proc
#fuser -km chroot/proc
if [ -e chroot/proc/version ]
then
- ${LB_ROOT_COMMAND} umount chroot/proc
+ umount chroot/proc
fi
else
rm -rf chroot/proc
diff --git a/scripts/build/chroot_selinuxfs b/scripts/build/chroot_selinuxfs
index 223d1accf..23c2ae4e5 100755
--- a/scripts/build/chroot_selinuxfs
+++ b/scripts/build/chroot_selinuxfs
@@ -51,7 +51,7 @@ case "${1}" in
mkdir -p chroot/selinux
# Mounting /selinux
- ${LB_ROOT_COMMAND} mount selinuxfs-live -t selinuxfs chroot/selinux
+ mount selinuxfs-live -t selinuxfs chroot/selinux
else
rm -rf chroot/selinux
ln -s /selinux chroot/
@@ -77,7 +77,7 @@ case "${1}" in
#fuser -km chroot/selinux
if [ -e chroot/selinux/enforce ]
then
- ${LB_ROOT_COMMAND} umount chroot/selinux
+ umount chroot/selinux
fi
else
if [ -e chroot/selinux ]
diff --git a/scripts/build/chroot_sysfs b/scripts/build/chroot_sysfs
index 9ae890942..a40078f30 100755
--- a/scripts/build/chroot_sysfs
+++ b/scripts/build/chroot_sysfs
@@ -49,7 +49,7 @@ case "${1}" in
mkdir -p chroot/sys
# Mounting /sys
- ${LB_ROOT_COMMAND} mount sysfs-live -t sysfs chroot/sys
+ mount sysfs-live -t sysfs chroot/sys
else
rm -rf chroot/sys
ln -s /sys chroot/
@@ -74,7 +74,7 @@ case "${1}" in
#fuser -km chroot/sys
if [ -e chroot/sys/class ]
then
- ${LB_ROOT_COMMAND} umount chroot/sys
+ umount chroot/sys
fi
else
rm -rf chroot/sys
diff --git a/scripts/build/clean b/scripts/build/clean
index 3c0f35f75..8706bf214 100755
--- a/scripts/build/clean
+++ b/scripts/build/clean
@@ -68,26 +68,26 @@ do
;;
--cache)
- ${LB_ROOT_COMMAND} rm -rf cache
+ rm -rf cache
;;
--chroot)
Echo_message "Cleaning chroot"
- ${LB_ROOT_COMMAND} umount -f chroot/run > /dev/null 2>&1 || true
- ${LB_ROOT_COMMAND} umount -f chroot/sys > /dev/null 2>&1 || true
- ${LB_ROOT_COMMAND} umount -f chroot/proc/sys/fs/binfmt_misc > /dev/null 2>&1 || true
- ${LB_ROOT_COMMAND} umount -f chroot/proc > /dev/null 2>&1 || true
- ${LB_ROOT_COMMAND} umount -f chroot/lib/init/rw > /dev/null 2>&1 || true
- ${LB_ROOT_COMMAND} umount -f chroot/dev/shm > /dev/null 2>&1 || true
- ${LB_ROOT_COMMAND} umount -f chroot/dev/pts > /dev/null 2>&1 || true
- ${LB_ROOT_COMMAND} umount -f chroot/dev > /dev/null 2>&1 || true
- ${LB_ROOT_COMMAND} umount -f chroot/var/lib/dpkg > /dev/null 2>&1 || true
- ${LB_ROOT_COMMAND} umount -f chroot/root/config > /dev/null 2>&1 || true
-
- ${LB_ROOT_COMMAND} umount -f chroot/binary.tmp > /dev/null 2>&1 || true
- ${LB_ROOT_COMMAND} umount -f chroot/dev.tmp/pts > /dev/null 2>&1 || true
-
- ${LB_ROOT_COMMAND} rm -rf chroot chroot.tmp
+ umount -f chroot/run > /dev/null 2>&1 || true
+ umount -f chroot/sys > /dev/null 2>&1 || true
+ umount -f chroot/proc/sys/fs/binfmt_misc > /dev/null 2>&1 || true
+ umount -f chroot/proc > /dev/null 2>&1 || true
+ umount -f chroot/lib/init/rw > /dev/null 2>&1 || true
+ umount -f chroot/dev/shm > /dev/null 2>&1 || true
+ umount -f chroot/dev/pts > /dev/null 2>&1 || true
+ umount -f chroot/dev > /dev/null 2>&1 || true
+ umount -f chroot/var/lib/dpkg > /dev/null 2>&1 || true
+ umount -f chroot/root/config > /dev/null 2>&1 || true
+
+ umount -f chroot/binary.tmp > /dev/null 2>&1 || true
+ umount -f chroot/dev.tmp/pts > /dev/null 2>&1 || true
+
+ rm -rf chroot chroot.tmp
rm -f chroot.packages.live chroot.packages.install
@@ -95,7 +95,7 @@ do
;;
--binary)
- ${LB_ROOT_COMMAND} umount -f binary.tmp > /dev/null 2>&1 || true
+ umount -f binary.tmp > /dev/null 2>&1 || true
rm -rf binary.tmp binary.deb binary.udeb
rm -f ${LIVE_IMAGE_NAME}*.iso
rm -f ${LIVE_IMAGE_NAME}*.img
diff --git a/scripts/build/config b/scripts/build/config
index cb2ed9eeb..75c7b127a 100755
--- a/scripts/build/config
+++ b/scripts/build/config
@@ -113,7 +113,6 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
\t [--net-cow-server IP|HOSTNAME]\n\
\t [--net-tarball true|false]\n\
\t [--quiet]\n\
-\t [--root-command sudo]\n\
\t [--use-fakeroot true|false]\n\
\t [--archives ARCHIVE|\"ARCHIVES\"]\n\
\t [--archive-areas ARCHIVE_AREA|\"ARCHIVE_AREAS\"]\n\
@@ -143,7 +142,7 @@ Local_arguments ()
LONG_OPTIONS="apt:,apt-ftp-proxy:,apt-http-proxy:,apt-options:,aptitude-options:,debootstrap-options:,cdebootstrap-options:,
apt-pipeline:,apt-recommends:,apt-secure:,apt-source-archives:,bootstrap:,cache:,cache-indices:,cache-packages:,
cache-stages:,debconf-frontend:,debconf-priority:,dump,
- initramfs:,initramfs-compression:,initsystem:,fdisk:,losetup:,mode:,system:,root-command:,use-fakeroot:,tasksel:,
+ initramfs:,initramfs-compression:,initsystem:,fdisk:,losetup:,mode:,system:,use-fakeroot:,tasksel:,
templates:,architectures:,clean,
distribution:,parent-distribution:,parent-debian-installer-distribution:,parent-mirror-bootstrap:,parent-mirror-chroot:,parent-mirror-chroot-security:,parent-mirror-chroot-updates:,parent-mirror-chroot-backports:,parent-mirror-binary:,
parent-mirror-binary-security:,parent-mirror-binary-updates:,parent-mirror-binary-backports:,parent-mirror-debian-installer:,
@@ -348,11 +347,6 @@ Local_arguments ()
shift 2
;;
- --root-command)
- LB_ROOT_COMMAND="${2}"
- shift 2
- ;;
-
--use-fakeroot)
LB_USE_FAKEROOT="${2}"
shift 2
@@ -1053,10 +1047,6 @@ LB_MODE="${LB_MODE}"
# (Default: ${LB_SYSTEM})
LB_SYSTEM="${LB_SYSTEM}"
-# \$LB_ROOT_COMMAND: use sudo or equivalent
-# (Default: empty)
-#LB_ROOT_COMMAND="sudo"
-
# \$LB_USE_FAKEROOT: use fakeroot/fakechroot
# (Default: ${LB_USE_FAKEROOT})
LB_USE_FAKEROOT="${LB_USE_FAKEROOT}"
diff --git a/scripts/build/source_hdd b/scripts/build/source_hdd
index b622a6817..1b5ee9121 100755
--- a/scripts/build/source_hdd
+++ b/scripts/build/source_hdd
@@ -126,9 +126,9 @@ esac
Chroot chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}"
mkdir -p source.tmp
-${LB_ROOT_COMMAND} mount ${FREELO} source.tmp
+mount ${FREELO} source.tmp
cp -r source/* source.tmp
-${LB_ROOT_COMMAND} umount source.tmp
+umount source.tmp
rmdir source.tmp
Lodetach ${FREELO}
Echo_warning "!!! The above error/warning messages can be ignored !!!"
diff --git a/scripts/build/testroot b/scripts/build/testroot
index 9c63b79b4..9b4f86c26 100755
--- a/scripts/build/testroot
+++ b/scripts/build/testroot
@@ -25,7 +25,7 @@ Read_conffiles config/all config/common config/bootstrap config/chroot config/bi
Set_defaults
# Checking user account
-if [ "$(${LB_ROOT_COMMAND} id -u)" -ne "0" ]
+if [ "$(id -u)" -ne "0" ]
then
Echo_error "need root privileges"
exit 1