diff --git a/debian/changelog b/debian/changelog index 746acda..46eb5e4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +live-build (1:20170829) unstable; urgency=medium + + * Add .disk/mkisofs file recording the xorriso command line. Thanks + to Thomas Schmitt for the suggestion. + * Initialize /etc/default/locale with LANG=C.UTF-8 so that we always + have a valid UTF-8 locale even when we don't have the "locales" + package installed. + * Drop all references to live-systems.org. Closes: #859290 + * Update copyright file. + + -- Raphaël Hertzog Tue, 29 Aug 2017 14:16:49 +0200 + live-build (1:20170807kali1) kali-dev; urgency=medium * Synchronize with Debian. Remaining changes: diff --git a/debian/control b/debian/control index bbc0a24..b808c12 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Uploaders: Raphaël Hertzog Build-Depends: debhelper (>= 10), -Standards-Version: 3.9.8 +Standards-Version: 4.1.0 Homepage: https://debian-live.alioth.debian.org/live-build/ Vcs-Browser: https://anonscm.debian.org/cgit/debian-live/live-build.git Vcs-Git: https://anonscm.debian.org/git/debian-live/live-build.git diff --git a/debian/copyright b/debian/copyright index 950e4ea..0e9eecf 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,10 +1,11 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: live-build -Upstream-Contact: Live Systems Project -Source: http://live-systems.org/archive/packages/live-build/ +Upstream-Contact: Debian Live Project Files: * -Copyright: 2006-2015 Daniel Baumann +Copyright: + 2016-2017 Raphaël Hertzog + 2006-2015 Daniel Baumann License: GPL-3+ License: GPL-3+ diff --git a/debian/live-build.bug-presubj b/debian/live-build.bug-presubj index e36358b..cb3dff7 100644 --- a/debian/live-build.bug-presubj +++ b/debian/live-build.bug-presubj @@ -1,7 +1,7 @@ Before submitting a bug report against live-build, please make sure that you have read your guidelines for live systems bug reports: - http://live-systems.org/manual/ + https://debian-live.alioth.debian.org/live-manual/unstable/manual/html/live-manual.en.html By providing the required information as outlined in the guidelines makes sure that we can optimally reproduce and fix bugs, not doing so wastes a diff --git a/functions/defaults.sh b/functions/defaults.sh index 8ee4f6c..dc60207 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -651,7 +651,7 @@ esac # Set iso preparer - LB_ISO_PREPARER="${LB_ISO_PREPARER:-live-build \$VERSION; http://live-systems.org/devel/live-build}" + LB_ISO_PREPARER="${LB_ISO_PREPARER:-live-build \$VERSION; https://debian-live.alioth.debian.org/devel/live-build}" # Set iso publisher case "${LB_MODE}" in @@ -660,7 +660,7 @@ ;; *) - LB_ISO_PUBLISHER="${LB_ISO_PUBLISHER:-Live Systems project; http://live-systems.org/; debian-live@lists.debian.org}" + LB_ISO_PUBLISHER="${LB_ISO_PUBLISHER:-Live Systems project; https://debian-live.alioth.debian.org/; debian-live@lists.debian.org}" ;; esac diff --git a/functions/help.sh b/functions/help.sh index cd9344b..f48d2a9 100755 --- a/functions/help.sh +++ b/functions/help.sh @@ -31,6 +31,6 @@ echo fi - Echo "Report bugs to the Live Systems project ." + Echo "Report bugs to the Live Systems project ." exit 0 } diff --git a/manpages/Makefile b/manpages/Makefile index 0eeb3d4..563ca50 100644 --- a/manpages/Makefile +++ b/manpages/Makefile @@ -47,7 +47,7 @@ exit 1; \ fi - po4a --copyright-holder "Live Systems Project" --keep 0 --package-name live-build --package-version $(shell cat ../VERSION) po4a.cfg + po4a --copyright-holder "Live Systems Project" --keep 0 --package-name live-build --package-version $(shell cd .. && dpkg-parsechangelog -S Version) po4a.cfg clean: rm -f po/*/*.po~ diff --git a/manpages/bin/update-version.sh b/manpages/bin/update-version.sh index f1c8afd..d1d6994 100755 --- a/manpages/bin/update-version.sh +++ b/manpages/bin/update-version.sh @@ -11,7 +11,7 @@ set -e PROGRAM="LIVE\\\-BUILD" -VERSION="$(cat ../VERSION)" +VERSION="$(cd .. && dpkg-parsechangelog -S Version)" DATE="$(LC_ALL=C date +%Y\\\\-%m\\\\-%d)" diff --git a/manpages/en/lb.1 b/manpages/en/lb.1 index 772d9b1..847bcfe 100644 --- a/manpages/en/lb.1 +++ b/manpages/en/lb.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11-1 "Live Systems Project" +.TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project" .SH NAME \fBlb\fR \- wrapper for live\-build programs @@ -25,7 +25,7 @@ This program is a part of live\-build. .SH HOMEPAGE -More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. +More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttps://debian-live.alioth.debian.org/\fR>. .SH BUGS Bugs can be reported by submitting a bugreport for the live\-build package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. diff --git a/manpages/en/lb_binary.1 b/manpages/en/lb_binary.1 index d729ae8..ecc9381 100644 --- a/manpages/en/lb_binary.1 +++ b/manpages/en/lb_binary.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11-1 "Live Systems Project" +.TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project" .SH NAME \fBlb_binary\fR \- Complete the binary stage @@ -23,7 +23,7 @@ This program is a part of live\-build. .SH HOMEPAGE -More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. +More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttps://debian-live.alioth.debian.org/\fR>. .SH BUGS Bugs can be reported by submitting a bugreport for the live\-build package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. diff --git a/manpages/en/lb_bootstrap.1 b/manpages/en/lb_bootstrap.1 index 4e5fa26..387f7a6 100644 --- a/manpages/en/lb_bootstrap.1 +++ b/manpages/en/lb_bootstrap.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11-1 "Live Systems Project" +.TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project" .SH NAME \fBlb_bootstrap\fR \- Complete the bootstrap stage @@ -23,7 +23,7 @@ This program is a part of live\-build. .SH HOMEPAGE -More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. +More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttps://debian-live.alioth.debian.org/\fR>. .SH BUGS Bugs can be reported by submitting a bugreport for the live\-build package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. diff --git a/manpages/en/lb_build.1 b/manpages/en/lb_build.1 index d32756d..5bf9847 100644 --- a/manpages/en/lb_build.1 +++ b/manpages/en/lb_build.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11-1 "Live Systems Project" +.TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project" .SH NAME \fBlb_build\fR \- Complete the bootstrap, chroot, binary, and source stages @@ -25,7 +25,7 @@ This program is a part of live\-build. .SH HOMEPAGE -More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. +More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttps://debian-live.alioth.debian.org/\fR>. .SH BUGS Bugs can be reported by submitting a bugreport for the live\-build package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. diff --git a/manpages/en/lb_chroot.1 b/manpages/en/lb_chroot.1 index 9e59b2b..f35e934 100644 --- a/manpages/en/lb_chroot.1 +++ b/manpages/en/lb_chroot.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11-1 "Live Systems Project" +.TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project" .SH NAME \fBlb_chroot\fR \- Complete the chroot stage @@ -23,7 +23,7 @@ This program is a part of live\-build. .SH HOMEPAGE -More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. +More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttps://debian-live.alioth.debian.org/\fR>. .SH BUGS Bugs can be reported by submitting a bugreport for the live\-build package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. diff --git a/manpages/en/lb_clean.1 b/manpages/en/lb_clean.1 index 02459f2..f5329bd 100644 --- a/manpages/en/lb_clean.1 +++ b/manpages/en/lb_clean.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11-1 "Live Systems Project" +.TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project" .SH NAME \fBlb_clean\fR \- Clean build directory @@ -46,7 +46,7 @@ This program is a part of live\-build. .SH HOMEPAGE -More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. +More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttps://debian-live.alioth.debian.org/\fR>. .SH BUGS Bugs can be reported by submitting a bugreport for the live\-build package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. diff --git a/manpages/en/lb_config.1 b/manpages/en/lb_config.1 index 79e27e9..5110e96 100644 --- a/manpages/en/lb_config.1 +++ b/manpages/en/lb_config.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11-1 "Live Systems Project" +.TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project" .SH NAME \fBlb_config\fR \- Create config directory @@ -488,7 +488,7 @@ This program is a part of live\-build. .SH HOMEPAGE -More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. +More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttps://debian-live.alioth.debian.org/\fR>. .SH BUGS Bugs can be reported by submitting a bugreport for the live\-build package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. diff --git a/manpages/en/lb_installer.1 b/manpages/en/lb_installer.1 index 0578427..c337147 100644 --- a/manpages/en/lb_installer.1 +++ b/manpages/en/lb_installer.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2015\-01\-04 5.0~a1-1 "Live Systems Project" +.TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project" .SH NAME \fBlb_installer\fR \- Complete the installer stage @@ -23,7 +23,7 @@ This program is a part of live\-build. .SH HOMEPAGE -More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. +More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttps://debian-live.alioth.debian.org/\fR>. .SH BUGS Bugs can be reported by submitting a bugreport for the live\-build package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. diff --git a/manpages/en/lb_source.1 b/manpages/en/lb_source.1 index 6a41429..c9327d4 100644 --- a/manpages/en/lb_source.1 +++ b/manpages/en/lb_source.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11-1 "Live Systems Project" +.TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project" .SH NAME \fBlb_source\fR \- Complete the source stage @@ -23,7 +23,7 @@ This program is a part of live\-build. .SH HOMEPAGE -More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. +More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttps://debian-live.alioth.debian.org/\fR>. .SH BUGS Bugs can be reported by submitting a bugreport for the live\-build package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. diff --git a/manpages/en/live-build.7 b/manpages/en/live-build.7 index 7c6628d..fd49025 100644 --- a/manpages/en/live-build.7 +++ b/manpages/en/live-build.7 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 7 2015\-10\-21 5.0~a11-1 "Live Systems Project" +.TH LIVE\-BUILD 7 2017\-08\-29 1:20170807kali1 "Live Systems Project" .SH NAME \fBlive\-build\fR \- the live systems tool suite @@ -14,7 +14,7 @@ .PP The \fICOMMAND\fR is a name of a live\-build command (see below). .PP -More documentation about how to use live\-build is available in the individual manpages for each helper and in the manual at <\fIhttp://live-systems.org/manual/\fR>. +More documentation about how to use live\-build is available in the individual manpages for each helper and in the manual at <\fIhttps://debian-live.alioth.debian.org/manual/\fR>. .\" FIXME .SH OPTIONS @@ -238,7 +238,7 @@ This program is a part of live\-build. .SH HOMEPAGE -More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>. +More information about live\-build and the Live Systems project can be found on the homepage at <\fIhttps://debian-live.alioth.debian.org/\fR>. .SH BUGS Bugs can be reported by submitting a bugreport for the live\-build package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>. diff --git a/manpages/fr/lb.fr.1 b/manpages/fr/lb.fr.1 index aeab5bc..596793f 100644 --- a/manpages/fr/lb.fr.1 +++ b/manpages/fr/lb.fr.1 @@ -33,10 +33,8 @@ Ce programme est une partie de live\-build. .SH "PAGE D'ACCUEIL" -Davantage d'informations à propos de live\-build et du projet Live Systems -peuvent être trouvées sur la page d'accueil à -<\fIhttp://live\-systems.org/\fP> et dans le manuel à -<\fIhttp://live\-systems.org/manual/\fP>. +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH BOGUES Les bogues peuvent être signalés en soumettant un rapport de bogue pour le diff --git a/manpages/fr/lb_binary.fr.1 b/manpages/fr/lb_binary.fr.1 index cf15457..4d5f26e 100644 --- a/manpages/fr/lb_binary.fr.1 +++ b/manpages/fr/lb_binary.fr.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems" .SH NOM -\fBlb binary\fP \- Complète le stage bianire +\fBlb_binary\fP \- Complete the binary stage .SH SYNOPSIS \fBlb binary\fP [\fIlive\-build options\fP] @@ -32,10 +32,8 @@ Ce programme est une partie de live\-build. .SH "PAGE D'ACCUEIL" -Davantage d'informations à propos de live\-build et du projet Live Systems -peuvent être trouvées sur la page d'accueil à -<\fIhttp://live\-systems.org/\fP> et dans le manuel à -<\fIhttp://live\-systems.org/manual/\fP>. +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH BOGUES Les bogues peuvent être signalés en soumettant un rapport de bogue pour le diff --git a/manpages/fr/lb_bootstrap.fr.1 b/manpages/fr/lb_bootstrap.fr.1 index c04103d..6bd499d 100644 --- a/manpages/fr/lb_bootstrap.fr.1 +++ b/manpages/fr/lb_bootstrap.fr.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems" .SH NOM -\fBlb bootstrap\fP \- Complète le stage d'amorçage +\fBlb_bootstrap\fP \- Complete the bootstrap stage .SH SYNOPSIS \fBlb bootstrap\fP [\fIlive\-build options\fP] @@ -32,10 +32,8 @@ Ce programme est une partie de live\-build. .SH "PAGE D'ACCUEIL" -Davantage d'informations à propos de live\-build et du projet Live Systems -peuvent être trouvées sur la page d'accueil à -<\fIhttp://live\-systems.org/\fP> et dans le manuel à -<\fIhttp://live\-systems.org/manual/\fP>. +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH BOGUES Les bogues peuvent être signalés en soumettant un rapport de bogue pour le diff --git a/manpages/fr/lb_build.fr.1 b/manpages/fr/lb_build.fr.1 index c788f8b..f43c918 100644 --- a/manpages/fr/lb_build.fr.1 +++ b/manpages/fr/lb_build.fr.1 @@ -6,8 +6,7 @@ .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems" .SH NOM -\fBlb build\fP \- Complète les stages d'amorçage (bootstrap), de chroot, -binaire, et source +\fBlb_build\fP \- Complete the bootstrap, chroot, binary, and source stages .SH SYNOPSIS \fBlb build\fP [\fIlive\-build options\fP] @@ -35,10 +34,8 @@ Ce programme est une partie de live\-build. .SH "PAGE D'ACCUEIL" -Davantage d'informations à propos de live\-build et du projet Live Systems -peuvent être trouvées sur la page d'accueil à -<\fIhttp://live\-systems.org/\fP> et dans le manuel à -<\fIhttp://live\-systems.org/manual/\fP>. +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH BOGUES Les bogues peuvent être signalés en soumettant un rapport de bogue pour le diff --git a/manpages/fr/lb_chroot.fr.1 b/manpages/fr/lb_chroot.fr.1 index 5880865..09ace0d 100644 --- a/manpages/fr/lb_chroot.fr.1 +++ b/manpages/fr/lb_chroot.fr.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems" .SH NOM -\fBlb chroot\fP \- Complète le stage de chroot +\fBlb_chroot\fP \- Complete the chroot stage .SH SYNOPSIS \fBlb chroot\fP [\fIlive\-build options\fP] @@ -32,10 +32,8 @@ Ce programme est une partie de live\-build. .SH "PAGE D'ACCUEIL" -Davantage d'informations à propos de live\-build et du projet Live Systems -peuvent être trouvées sur la page d'accueil à -<\fIhttp://live\-systems.org/\fP> et dans le manuel à -<\fIhttp://live\-systems.org/manual/\fP>. +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH BOGUES Les bogues peuvent être signalés en soumettant un rapport de bogue pour le diff --git a/manpages/fr/lb_clean.fr.1 b/manpages/fr/lb_clean.fr.1 index 539e7bb..f02e51c 100644 --- a/manpages/fr/lb_clean.fr.1 +++ b/manpages/fr/lb_clean.fr.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems" .SH NOM -\fBlb clean\fP \- Nettoie le répertoire de construction +\fBlb_clean\fP \- Clean build directory .SH SYNOPSIS \fBlb clean\fP [\fIlive\-build options\fP] @@ -63,10 +63,8 @@ Ce programme est une partie de live\-build. .SH "PAGE D'ACCUEIL" -Davantage d'informations à propos de live\-build et du projet Live Systems -peuvent être trouvées sur la page d'accueil à -<\fIhttp://live\-systems.org/\fP> et dans le manuel à -<\fIhttp://live\-systems.org/manual/\fP>. +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH BOGUES Les bogues peuvent être signalés en soumettant un rapport de bogue pour le diff --git a/manpages/fr/lb_config.fr.1 b/manpages/fr/lb_config.fr.1 index b2a1a9e..8a0dfd5 100644 --- a/manpages/fr/lb_config.fr.1 +++ b/manpages/fr/lb_config.fr.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems" .SH NOM -\fBlb config\fP \- Crée un répertoire de configuration +\fBlb_config\fP \- Create config directory .SH SYNOPSIS \fBlb config\fP [\fIlive\-build options\fP] @@ -44,7 +44,9 @@ .br [\fB\-\-bootappend\-live\fP \fIPARAMÈTRES\fP|\fI"PARAMÈTRES"\fP] .br - [\fB\-\-bootloader\fP grub|grub2|syslinux] + [\fB\-\-bootappend\-live\-failsafe\fP \fIPARAMETER\fP|\fI"PARAMETERS"\fP] +.br + [\fB\-\-bootloaders\fP grub\-legacy|grub\-pc|syslinux|grub\-efi] .br [\fB\-\-cache\fP true|false] .br @@ -79,6 +81,10 @@ [\fB\-\-debian\-installer\-preseedfile\fP \fIFICHIER\fP|\fIURL\fP] .br [\fB\-\-debian\-installer\-gui\fP true|false] +.br + [\fB\-\-debootstrap\-options\fP \fIOPTIONS\fP] +.br + [\fB\-\-debootstrap\-script\fP \fISCRIPT\fP] .br [\fB\-\-debug\fP] .br @@ -312,39 +318,40 @@ CD/DVD qui peuvent également être utilisée comme images hdd, pour les images non\-syslinux, le défaut est iso. .IP "\fB\-\-binary\-filesystem\fP fat16|fat32|ext2|ext3|ext4" 4 -définit le système de fichier à utiliser dans le type d'image. Ceci a un -effet si le type d'image binaire sélectionnée permet de choisir un système -de fichier. Par exemple, lorsque iso est sélectionné, le CD/DVD résultant a -toujours un système de fichier ISO9660. Lors de la construction d'une image -hdd pour des clefs usb, ceci est actif. Notez que ceci sélectionne fat16 par -défaut sur toutes les architectures excepté sparc où le défaut est -ext4. Notez également que si vous choisissez fat16 et que votre image -binaire résultante est plus grosse que 2GB, alors le système de fichier -binaire sera automatiquement passé à fat32. +defines the filesystem to be used in the image type. This only has an effect +if the selected binary image type lets you choose a filesystem. For example, +when selection iso the resulting CD/DVD has always the filesystem +ISO9660. When building hdd images for usb sticks, this is active. Note that +it defaults to fat16 on all architectures except sparc where it defaults to +ext4. Also note that if you choose fat16 and your resulting binary image +gets bigger than 2GB, the binary filesystem automatically gets switched to +fat32. .IP "\fB\-\-bootappend\-install\fP \fIPARAMÈTRE\fP|\(dq\fIPARAMÈTRES\fP\(dq" 4 paramètre les options de démarrage spécifiques à debian\-installer, si inclu. .IP "\fB\-\-bootappend\-live\fP \fIPARAMÈTRE\fP|\(dq\fIPARAMÈTRES\fP\(dq" 4 paramètre les options de démarrage spécifiques à debian\-live. Une liste complète des paramètres de démarrage peut être trouvée dans les pages de manuel \fIlive\-boot\fP(7) et \fIlive\-config\fP(7). -.IP "\fB\-\-bootloader\fP grub|grub2|syslinux" 4 -définit quel chargeur de démarrage est utilisé dans l'image générée. Ceci a -effet seulement si l'image binaire sélectionnée permet de choisir le -chargeur de démarrage. Par exemple, si vous construisez une iso, syslinux -(ou plus précisément, isolinux) est toujours utilisé. Notez également que -certaines combinaisons de types d'images binaires et de chargeurs de -démarrage peuvent être possibles mais que live\-build ne les prend pas encore -en charge. \fBlb config\fP échouera a créer une de ses configurations pas -encore supportées et donnera une explication à ce propos. Pour des images -hdd sur amd64 et i386, le défaut est syslinux. +.IP "\fB\-\-bootappend\-live\-failsafe\fP \fIPARAMETER\fP|\(dq\fIPARAMETERS\fP\(dq" 4 +sets boot parameters specific to debian\-live failsafe boot entries. A +complete list of boot parameters can be found in the \fIlive\-boot\fP(7) and +\fIlive\-config\fP(7) manual pages. +.IP "\fB\-\-bootloaders\fP grub\-legacy|grub\-pc|syslinux|grub\-efi" 4 +defines which bootloader is being used in the generated image. This has only +an effect if the selected binary image type lets you choose the +bootloader. For example, if you build a iso, always syslinux (or more +precise, isolinux) is being used. Also note that some combinations of binary +images types and bootloaders may be possible but live\-build does not support +them yet. \fBlb config\fP will fail to create such a not yet supported +configuration and give a explanation about it. For hdd images on amd64 and +i386, the default is syslinux. .IP "\fB\-\-cache\fP true|false" 4 définit globalement si un cache devrait être utilisé. Les différents caches peuvent être controlés à travers leurs propres options. .IP "\fB\-\-cache\-indices\fP true|false" 4 -définit si les indices et les listes de paquets téléchargés devrait être -cachés ce qui est faux (false) par défaut. L'activer autoriserait la -reconstruction d'une image complétement hors\-ligne, vous n'auriez donc plus -les mises\-à\-jour. +defines if downloaded package indices and lists should be cached which is +false by default. Enabling it lets you rebuild an image completely offline, +however, you would not get updates anymore then. .IP "\fB\-\-cache\-packages\fP true|false" 4 définit si les fichiers de paquets téléchargés pourrait être cachés ce qui est vrai (true) par défaut. Le désactiver économise la consomation d'espace @@ -375,9 +382,8 @@ définit le programme de compression à utiliser pour compresser les tarballs. Par défaut : gzip. .IP "\fB\-\-config\fP \fIGIT_URL\fP::\fIGIT_ID\fP" 4 -permet d'amorcer un arbre de configuration depuis un dépôt GIT, -optionnellement avec un numéro d'identification GIT (branche, commit, tag, -etc.). +bootstrap the config tree from a git repository, optionally appended by a +Git Id (branch, commit, tag, etc.). .IP "\fB\-\-build\-with\-chroot\fP true|false" 4 définit si live\-build devrait utiliser les outils de l'intérieur du chroot pour construire l'image binaire ou non en utilisant et incluant les outils @@ -439,6 +445,11 @@ définit si l'interface graphique GTK de l'installateur\-debian devrait être vraie ou pas. En mode Debian et pour la plupart des versions d'Ubuntu, cette option est vraie, tandis que sinon fausse, par défaut. +.IP "\fB\-\-debootstrap\-options\fP \fIOPTIONS\fP" 4 +passes the given options to debootstrap when setting up the base system. +.IP "\fB\-\-debootstrap\-script\fP \fISCRIPT\fP" 4 +tells debootstrap to use an alternate bootstrap script (last parameter to +debootstrap). .IP \fB\-\-debug\fP 4 active les messages d'information de déboguage. .IP "\-d|\fB\-\-distribution\fP \fINOM_DE_CODE\fP" 4 @@ -452,7 +463,7 @@ .IP \fB\-\-dump\fP 4 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 -reports, we do get all informations required for us to locate and replicate +reports, we do get all information required for us to locate and replicate an error. .IP "\fB\-\-fdisk\fP fdisk|fdisk.dist" 4 sets the filename of the fdisk binary from the host system that should be @@ -536,10 +547,11 @@ custom kernel packages that do not follow the debian naming scheme, remember to set this option to the stub of the packages only (for debian this is linux\-image\-2.6), so that \fISTUB\fP\-\fIFLAVOUR\fP results in a valid package name -(for debian e.g. linux\-image\-686\-pae). Preferably you use the meta package name, -if any, for the stub, so that your configuration is ABI independent. Also -don't forget that you have to include stubs of the binary modules packages -for unionfs or aufs, and squashfs if you built them out\-of\-tree. +(for debian e.g. linux\-image\-686\-pae). Preferably you use the meta package +name, if any, for the stub, so that your configuration is ABI +independent. Also don't forget that you have to include stubs of the binary +modules packages for unionfs or aufs, and squashfs if you built them +out\-of\-tree. .IP "\fB\-\-losetup\fP losetup|losetup.orig" 4 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. @@ -768,10 +780,8 @@ Ce programme est une partie de live\-build. .SH "PAGE D'ACCUEIL" -Davantage d'informations à propos de live\-build et du projet Live Systems -peuvent être trouvées sur la page d'accueil à -<\fIhttp://live\-systems.org/\fP> et dans le manuel à -<\fIhttp://live\-systems.org/manual/\fP>. +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH BOGUES Les bogues peuvent être signalés en soumettant un rapport de bogue pour le diff --git a/manpages/fr/lb_source.fr.1 b/manpages/fr/lb_source.fr.1 index fb0333c..9df8001 100644 --- a/manpages/fr/lb_source.fr.1 +++ b/manpages/fr/lb_source.fr.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems" .SH NOM -\fBlb source\fP \- Complète le stage source +\fBlb_source\fP \- Complete the source stage .SH SYNOPSIS \fBlb source\fP [\fIlive\-build options\fP] @@ -32,10 +32,8 @@ Ce programme est une partie de live\-build. .SH "PAGE D'ACCUEIL" -Davantage d'informations à propos de live\-build et du projet Live Systems -peuvent être trouvées sur la page d'accueil à -<\fIhttp://live\-systems.org/\fP> et dans le manuel à -<\fIhttp://live\-systems.org/manual/\fP>. +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH BOGUES Les bogues peuvent être signalés en soumettant un rapport de bogue pour le diff --git a/manpages/fr/live-build.fr.7 b/manpages/fr/live-build.fr.7 index c276c7d..8331564 100644 --- a/manpages/fr/live-build.fr.7 +++ b/manpages/fr/live-build.fr.7 @@ -25,9 +25,9 @@ La \fICOMMANDE\fP est un nom d'une commande live\-build (voir ci\-dessous). .PP .\" FIXME -Davantage de documentation à propos de la façon d'utiliser live\-build est -disponible dans les pages de manuel individuelles de chaque assistant ainsi -que dans le manual à <\fIhttp://live\-systems.org/manual/\fP>. +More documentation about how to use live\-build is available in the +individual manpages for each helper and in the manual at +<\fIhttps://debian\-live.alioth.debian.org/manual/\fP>. .SH OPTIONS .\" FIXME @@ -73,30 +73,29 @@ Nous séparons les commandes porcelaine en commandes principales et en utilitaires utilisateur auxiliaires. .SS "Commandes porcelaine principales" -.IP \fBlb_config\fP(1) 4 -crée une configuration pour live\-build -.IP \fBlb_bootstrap\fP(1) 4 -crée le premier stage en amorçant un système debian basique -.IP \fBlb_chroot\fP(1) 4 -crée un deuxième stage en personnalisant le chroot -.IP \fBlb_binary\fP(1) 4 -crée le troisième stage en générant une image binaire -.IP \fBlb_source\fP(1) 4 -crée le quatrième stage optionel en générant une image source -.IP \fBlb_clean\fP(1) 4 -nettoie les répertoires de construction du système +.IP "\fBlb config\fP(1)" 4 +creates configuration for live\-build +.IP "\fBlb bootstrap\fP(1)" 4 +executes the first build stage, creating (bootstraping) a basic Debian root +filesystem +.IP "\fBlb chroot\fP(1)" 4 +executes the second build stage, building the live OS filesystem +.IP "\fBlb installer\fP(1)" 4 +executes the third build stage, obtaining installer components (optional) +.IP "\fBlb binary\fP(1)" 4 +executes the fourth build stage, generating a binary image +.IP "\fBlb source\fP(1)" 4 +executes the fifth build stage, generating a source image (optional) +.IP "\fBlb clean\fP(1)" 4 +cleans up system build directories .SS "Commandes auxiliaires" .IP \fBlb\fP(1) 4 -emballage live\-build générique -.IP \fBlb_build\fP(1) 4 -alias pour tous les stages -.IP \fBlb_local\fP(1) 4 -assistant pour l'utilisation d'un live\-build local -.IP \fBlb_testroot\fP(1) 4 -.\" FIXME -s'assure que le système est construit en tant qu'administrateur (root) - -.SH "COMMANDES BAS\-NIVEAU (PLOMBERIE)" +generic live\-build script execution wrapper +.IP "\fBlb build\fP(1)" 4 +.\" FIXME +alias for all build stages + +.SH "LOW\-LEVEL COMMANDS (PLUMBING) \- BUILD STAGE COMPONENTS" .\" FIXME Le travail réel de live\-build est implémenté dans les commandes bas\-niveau, appelées plomberie. Elles ne sont pas supposées être utilisées par les @@ -111,119 +110,176 @@ commandes de niveau Porcelaine. D'un autre côté, l'interface des commandes Porcelaine sont sujettes à changement afin d'améliorer l'expérience de l'utilisateur final. -.SS "Commandes d'amorçage" -.IP \fBlb_bootstrap_cache\fP(1) 4 -stage d'amorçage cache -.IP \fBlb_bootstrap_debootstrap\fP(1) 4 -amorçcer un système Debian avec debootstrap(8) -.SS "Commandes chroot" -.IP \fBlb_chroot_apt\fP(1) 4 -gère /etc/apt/apt.conf -.IP \fBlb_chroot_cache\fP(1) 4 -stage de chroot cache -.IP \fBlb_chroot_debianchroot\fP(1) 4 -gère /etc/debian_chroot -.IP \fBlb_chroot_devpts\fP(1) 4 -monte /dev/pts -.IP \fBlb_chroot_dpkg\fP(1) 4 -gère /sbin/dpkg -.IP \fBlb_chroot_hacks\fP(1) 4 -exécute les hacks dans le chroot -.IP \fBlb_chroot_hostname\fP(1) 4 -gère /bin/hostname -.IP \fBlb_chroot_hosts\fP(1) 4 -gère /etc/hosts -.IP \fBlb_chroot_install\-packages\fP(1) 4 -installe les paquets en attente dans le chroot -.IP \fBlb_chroot_interactive\fP(1) 4 -rend la construction intéractive -.IP \fBlb_chroot_linux\-image\fP(1) 4 -gère /etc/kernel\-img.conf -.IP \fBlb_chroot_hooks\fP(1) 4 -exécute les hooks locaux dans le chroot -.IP \fBlb_chroot_local\-includes\fP(1) 4 -copie les fichiers locaux dans le chroot -.IP \fBlb_chroot_packages\fP(1) 4 -met en attente l'installation des paquets dans le chroot -.IP \fBlb_chroot_local\-patches\fP(1) 4 -appliques les rustines locales dans le chroot -.IP \fBlb_chroot_local\-preseed\fP(1) 4 -utilise un fichier de pré\-configuration local debconf -.IP \fBlb_chroot_packagelists\fP(1) 4 -met en attente l'installation des listes de paquets dans le chroot -.IP \fBlb_chroot_proc\fP(1) 4 -monte /proc -.IP \fBlb_chroot_resolv\fP(1) 4 -gère /etc/resolv.conf -.IP \fBlb_chroot_selinuxfs\fP(1) 4 -monte /selinux -.IP \fBlb_chroot_archives\fP(1) 4 -gère /etc/apt/sources.list -.IP \fBlb_chroot_sysfs\fP(1) 4 -gère /sys -.IP \fBlb_chroot_sysv\-rc\fP(1) 4 -gère /usr/sbin/policy\-rc.d -.IP \fBlb_chroot_task\-lists\fP(1) 4 -installe les listes de tâches dans le chroot -.SS "Commandes binaires" -.IP \fBlb_binary_chroot\fP(1) 4 -copie le chroot dans le chroot -.IP \fBlb_binary_debian\-installer\fP(1) 4 -installe debian\-installer dans le binaire -.IP \fBlb_binary_disk\fP(1) 4 -installe les informations de disque dans le binaire -.IP \fBlb_binary_grub\fP(1) 4 -installe grub dans le binaire -.IP \fBlb_binary_grub2\fP(1) 4 -installe grub2 dans le binaire -.IP \fBlb_binary_includes\fP(1) 4 -copie les fichiers dans le binaire -.IP \fBlb_binary_iso\fP(1) 4 -construit l'image binaire iso -.IP \fBlb_binary_linux\-image\fP(1) 4 -installe linux\-image dans le binaire -.IP \fBlb_binary_local\-hooks\fP(1) 4 -exécute les hooks locaux dans le binaire -.IP \fBlb_binary_local\-includes\fP(1) 4 -copie les fichiers dans le binaire -.IP \fBlb_binary_local\-packagelists\fP(1) 4 -installe les listes de paquets locaux dans le binaire -.IP \fBlb_binary_manifest\fP(1) 4 -crée le manifeste -.IP \fBlb_binary_checksums\fP(1) 4 -crée les sommes de vérification binaires (md5, sha1, et/ou sha256) -.IP \fBlb_binary_memtest\fP(1) 4 -installe memtest dans le binaire -.IP \fBlb_binary_net\fP(1) 4 -construit l'image binaire netboot -.IP \fBlb_binary_rootfs\fP(1) 4 -construit l'image rootfs -.IP \fBlb_binary_syslinux\fP(1) 4 -installe syslinux dans le binaire -.IP \fBlb_binary_tar\fP(1) 4 -construit une image binaire pour disque dur -.IP \fBlb_binary_hdd\fP(1) 4 -construit une image binaire hdd -.IP \fBlb_binary_win32\-loader\fP(1) 4 -installe win32\-loader dans le binaire -.SS "Commandes source" -.IP \fBlb_source_debian\fP(1) 4 -télécharge les sources -.IP \fBlb_source_debian\-live\fP(1) 4 -copie la configuration debian\-live dans la source -.IP \fBlb_source_disk\fP(1) 4 -installe les informations de disque dans la source -.IP \fBlb_source_iso\fP(1) 4 -construit l'image source iso -.IP \fBlb_source_checksums\fP(1) 4 -crée les sommes de vérification binaires (md5, sha1, et/ou sha256) -.IP \fBlb_source_net\fP(1) 4 -construit l'image net source -.IP \fBlb_source_tar\fP(1) 4 -construit le tarball source -.IP \fBlb_source_hdd\fP(1) 4 -.\" FIXME -construit l'image hdd source +.SS "Bootstrap stage specific commands" +.IP "\fBlb bootstrap_archives\fP(1)" 4 +applies apt archive configuration +.IP "\fBlb bootstrap_cache\fP(1)" 4 +in save mode, saves to cache a copy of the generated bootstrap directory, +and in restore mode, restores from cache a previously generated copy +.IP "\fBlb bootstrap_debootstrap\fP(1)" 4 +creates (bootstrap) a basic Debian root filesystem using debootstrap(8) +.SS "Chroot stage specific commands" +.PP +Note: The following chroot_ prefixed commands are used in building the live +OS filesystem. Another set of similarly prefixed files are listed separately +(see further down). +.IP "\fBlb chroot_cache\fP(1)" 4 +in save mode, saves to cache a copy of the chroot directory, and in restore +mode, restores from cache a previously generated copy +.IP "\fBlb chroot_firmware\fP(1)" 4 +compiles a list of firmware packages to be installed in the live OS root +filesystem +.IP "\fBlb chroot_hacks\fP(1)" 4 +executes local hacks against the live OS root filesystem, if any are +provided +.IP "\fBlb chroot_hooks\fP(1)" 4 +executes local hooks against the live OS root filesystem, if any are +provided +.IP "\fBlb chroot_includes\fP(1)" 4 +copies a set of local files from the config directory into the live OS root +filesystem, if any are provided +.IP "\fBlb chroot_install\-packages\fP(1)" 4 +installs into the live OS root filesystem any packages listed in local +package lists +.IP "\fBlb chroot_interactive\fP(1)" 4 +pauses the build process and starts an interactive shell from the live OS +root filesystem, providing an oportunity for manual modifications or +testing; note that this is (currently) usually executed with several chroot +prep modifications applied (see description of these further down) +.IP "\fBlb chroot_linux\-image\fP(1)" 4 +compiles a list of kernel images to be installed in the live OS root +filesystem +.IP "\fBlb chroot_live\-packages\fP(1)" 4 +installs a set of live system specific packages to the live OS root +filesystem +.IP "\fBlb chroot_package\-lists\fP(1)" 4 +compiles a list of packages provided in the user\' local config to be +installed in the live OS root filesystem +.IP "\fBlb chroot_preseed\fP(1)" 4 +installs pre\-configured answers to certain install prompts into the live OS +root filesystem +.SS "Installer stage specific commands" +.IP "\fBlb installer_debian\-installer\fP(1)" 4 +obtains and sets up Debian installer(d\-i) components +.IP "\fBlb installer_preseed\fP(1)" 4 +installs pre\-configured answers to certain install prompts +.SS "Binary stage specific commands" +.IP "\fBlb binary_checksums\fP(1)" 4 +creates checksums (md5, sha1, and/or sha256) for live image content +.IP "\fBlb binary_chroot\fP(1)" 4 +duplicates the chroot directory, to place a copy of what whould be the +completed live OS root filesystem to one side, allowing the original to +continue to be used in executing certain parts of the remainder of the build +process +.IP "\fBlb binary_disk\fP(1)" 4 +creates disk information files to be added to live image +.IP "\fBlb binary_grub\fP(1)" 4 +installs grub into live image to provide image boot capability +.IP "\fBlb binary_grub2\fP(1)" 4 +installs grub2 into live image to provide image boot capability +.IP "\fBlb binary_hdd\fP(1)" 4 +compiles the final live image into an hdd image file +.IP "\fBlb binary_hooks\fP(1)" 4 +executes local hooks against the live image, if any are provided +.IP "\fBlb binary_includes\fP(1)" 4 +copies a set of local files from the config directory into the live image, +if any are provided +.IP "\fBlb binary_iso\fP(1)" 4 +compiles the final live image into an iso file +.IP "\fBlb binary_linux\-image\fP(1)" 4 +copies the linux\-image into the live image +.IP "\fBlb binary_loadlin\fP(1)" 4 +bundles a copy of loadlin into the live image +.IP "\fBlb binary_manifest\fP(1)" 4 +creates manifest of packages installed into live OS filesystem, and list of +packages to be excluded by a persistence mechanism installing the live OS to +disk +.IP "\fBlb binary_memtest\fP(1)" 4 +bundles a copy of memtest into the live image +.IP "\fBlb binary_netboot\fP(1)" 4 +compiles the final live image into a netboot tar archive +.IP "\fBlb binary_package\-lists\fP(1)" 4 +processes local lists of packages to obtain and bundle into image (from +which they could later be installed if not already) +.IP "\fBlb binary_rootfs\fP(1)" 4 +wraps up the completed live OS root filesystem into a virtual file system +image +.IP "\fBlb binary_syslinux\fP(1)" 4 +installs syslinux into live image to provide image boot capability +.IP "\fBlb binary_tar\fP(1)" 4 +compiles the final live image into a tar archive +.IP "\fBlb binary_win32\-loader\fP(1)" 4 +bundles a copy of win32\-loader into the live image and creates an +autorun.inf file +.IP "\fBlb binary_zsync\fP(1)" 4 +builds zsync control files +.SS "Source stage specific commands" +.IP "\fBlb source_checksums\fP(1)" 4 +creates checksums (md5, sha1, and/or sha256) for source image content +.IP "\fBlb source_debian\fP(1)" 4 +downloads source packages for bundling into source image +.IP "\fBlb source_disk\fP(1)" 4 +creates disk information files to be added to source image +.IP "\fBlb source_hdd\fP(1)" 4 +compiles the final source image into an hdd image file +.IP "\fBlb source_hooks\fP(1)" 4 +executes local hooks against the source image, if any are provided +.IP "\fBlb source_iso\fP(1)" 4 +compiles the final source image into an iso file +.IP "\fBlb source_live\fP(1)" 4 +copies live\-build config into source +.IP "\fBlb source_tar\fP(1)" 4 +.\" FIXME +compiles the final source image into a tar archive + +.SH "LOW\-LEVEL COMMANDS (PLUMBING) \- CHROOT PREP COMPONENTS" +.\" FIXME +The notes above under the section regarding build\-stage specific low\-level +plumbing commands also apply here. +.PP +The following chroot_ prefixed commands are used throughout the various +primary stages of the build process to apply and remove modifications to a +chroot root filesystem. Generally these are used to apply modification that +setup the chroot for use (execution of programs within it) during the build +process, and later to remove those modification, unmounting things that were +mounted, and making the chroot suitable for use as the root filesystem of +the live OS to be bundled into the live image. +.IP "\fBlb chroot_apt\fP(1)" 4 +manages apt configuration; in apply mode it applies configuration for use +during build process, and in remove mode removes that configuration +.IP "\fBlb chroot_archives\fP(1)" 4 +manages apt archive source lists; in apply mode it applies source list +configurations suitable for use of the chroot in the build process, and in +remove mode replaces that with a configuration suitable for the final live +OS +.IP "\fBlb chroot_debianchroot\fP(1)" 4 +manages a /etc/debian_chroot file +.IP "\fBlb chroot_devpts\fP(1)" 4 +manages mounting of /dev/pts +.IP "\fBlb chroot_dpkg\fP(1)" 4 +manages dpkg; in apply mode disabling things like the start\-stop\-daemon, and +in remove mode enabling them again +.IP "\fBlb chroot_hostname\fP(1)" 4 +manages the hostname configuration +.IP "\fBlb chroot_hosts\fP(1)" 4 +manages the /etc/hosts file +.IP "\fBlb chroot_proc\fP(1)" 4 +manages mounting of /proc +.IP "\fBlb chroot_resolv\fP(1)" 4 +manages configuration of the /etc/resolv.conf file +.IP "\fBlb chroot_selinuxfs\fP(1)" 4 +manages mounting of /sys/fs/selinux +.IP "\fBlb chroot_sysfs\fP(1)" 4 +manages mounting of /sys +.IP "\fBlb chroot_sysv\-rc\fP(1)" 4 +manages the /usr/sbin/policy\-rc.d file +.IP "\fBlb chroot_tmpfs\fP(1)" 4 +manages configuration of dpkg to use a tmpfs filesystem +.IP "\fBlb chroot_upstart\fP(1)" 4 +.\" FIXME +manages use of upstart /sbin/initctl program; in apply mode blocking +execution through a dpkg diversion, and in remove mode enabling execution +again .SH "FICHIERS DE CONFIGURATION" .\" FIXME @@ -236,14 +292,12 @@ par le nom du stage auquel il appartient, "assistant" par le nom de l'assistant). .PP -Par exemple, lb_bootstrap_debootstrap utilise des fichiers nommés -config/bootstrap et config/bootstrap_debootstrap pour lire les options qu'il -utilisera. Voir les pages des commandes individuelles de manuel pour des -détails à propos des noms et des formats de fichiers qu'ils -utilisent. Généralement, ces fichiers contiennent des variables avec des -valeurs assignées, une variable par ligne. Plusieurs programmes dans -live\-build utilisent des paires de valeur ou des assignations de variables -légèrement plus compliquées. +For example, lb bootstrap_debootstrap uses files named config/bootstrap and +config/bootstrap_debootstrap to read the options it will use. See the man +pages of individual commands for details about the names and formats of the +files they use. Generally, these files contain variables with values +assigned, one variable per line. Some programs in live\-build use pairs of +values or slightly more complicated variable assignments. .PP Notez que live\-build respectera les variables d'environment présentes dans le contexte du shell lancé. Si les variables peuvent être lues depuis les @@ -279,10 +333,8 @@ Ce programme est une partie de live\-build. .SH "PAGE D'ACCUEIL" -Davantage d'informations à propos de live\-build et du projet Live Systems -peuvent être trouvées sur la page d'accueil à -<\fIhttp://live\-systems.org/\fP> et dans le manuel à -<\fIhttp://live\-systems.org/manual/\fP>. +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH BOGUES Les bogues peuvent être signalés en soumettant un rapport de bogue pour le diff --git a/manpages/ja/lb.ja.1 b/manpages/ja/lb.ja.1 index fef161c..7c83d89 100644 --- a/manpages/ja/lb.ja.1 +++ b/manpages/ja/lb.ja.1 @@ -31,9 +31,8 @@ このプログラムは live\-build の一部です。 .SH ホームページ -live\-build 及び Live -システムプロジェクトについてのさらなる情報は、<\fIhttp://live\-systems.org/\fP> のホームページや -<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。 +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH バグ バグは <\fIhttp://bugs.debian.org/\fP> にあるバグ追跡システムに live\-build diff --git a/manpages/ja/lb_binary.ja.1 b/manpages/ja/lb_binary.ja.1 index 2274828..f17d4d9 100644 --- a/manpages/ja/lb_binary.ja.1 +++ b/manpages/ja/lb_binary.ja.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト" .SH 名前 -\fBlb binary\fP \- バイナリ段階を完了させます +\fBlb_binary\fP \- Complete the binary stage .SH 概要 \fBlb binary\fP [\fIlive\-build オプション\fP] @@ -29,9 +29,8 @@ このプログラムは live\-build の一部です。 .SH ホームページ -live\-build 及び Live -システムプロジェクトについてのさらなる情報は、<\fIhttp://live\-systems.org/\fP> のホームページや -<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。 +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH バグ バグは <\fIhttp://bugs.debian.org/\fP> にあるバグ追跡システムに live\-build diff --git a/manpages/ja/lb_bootstrap.ja.1 b/manpages/ja/lb_bootstrap.ja.1 index d902d5c..d21eedb 100644 --- a/manpages/ja/lb_bootstrap.ja.1 +++ b/manpages/ja/lb_bootstrap.ja.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト" .SH 名前 -\fBlb bootstrap\fP \- パッケージ収集段階を完了させます +\fBlb_bootstrap\fP \- Complete the bootstrap stage .SH 概要 \fBlb bootstrap\fP [\fIlive\-build オプション\fP] @@ -29,9 +29,8 @@ このプログラムは live\-build の一部です。 .SH ホームページ -live\-build 及び Live -システムプロジェクトについてのさらなる情報は、<\fIhttp://live\-systems.org/\fP> のホームページや -<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。 +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH バグ バグは <\fIhttp://bugs.debian.org/\fP> にあるバグ追跡システムに live\-build diff --git a/manpages/ja/lb_build.ja.1 b/manpages/ja/lb_build.ja.1 index 024bef8..d617ecd 100644 --- a/manpages/ja/lb_build.ja.1 +++ b/manpages/ja/lb_build.ja.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト" .SH 名前 -\fBlb build\fP \- パッケージ収集、chroot、バイナリ、ソース段階を完了させます +\fBlb_build\fP \- Complete the bootstrap, chroot, binary, and source stages .SH 概要 \fBlb build\fP [\fIlive\-build オプション\fP] @@ -32,9 +32,8 @@ このプログラムは live\-build の一部です。 .SH ホームページ -live\-build 及び Live -システムプロジェクトについてのさらなる情報は、<\fIhttp://live\-systems.org/\fP> のホームページや -<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。 +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH バグ バグは <\fIhttp://bugs.debian.org/\fP> にあるバグ追跡システムに live\-build diff --git a/manpages/ja/lb_chroot.ja.1 b/manpages/ja/lb_chroot.ja.1 index 1e60842..7e97bf1 100644 --- a/manpages/ja/lb_chroot.ja.1 +++ b/manpages/ja/lb_chroot.ja.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト" .SH 名前 -\fBlb chroot\fP \- chroot 段階を完了させます +\fBlb_chroot\fP \- Complete the chroot stage .SH 概要 \fBlb chroot\fP [\fIlive\-build オプション\fP] @@ -29,9 +29,8 @@ このプログラムは live\-build の一部です。 .SH ホームページ -live\-build 及び Live -システムプロジェクトについてのさらなる情報は、<\fIhttp://live\-systems.org/\fP> のホームページや -<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。 +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH バグ バグは <\fIhttp://bugs.debian.org/\fP> にあるバグ追跡システムに live\-build diff --git a/manpages/ja/lb_clean.ja.1 b/manpages/ja/lb_clean.ja.1 index 7e360d7..b19ff31 100644 --- a/manpages/ja/lb_clean.ja.1 +++ b/manpages/ja/lb_clean.ja.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト" .SH 名前 -\fBlb clean\fP \- 設定ディレクトリを掃除します +\fBlb_clean\fP \- Clean build directory .SH 概要 \fBlb clean\fP [\fIlive\-build オプション\fP] @@ -53,9 +53,8 @@ このプログラムは live\-build の一部です。 .SH ホームページ -live\-build 及び Live -システムプロジェクトについてのさらなる情報は、<\fIhttp://live\-systems.org/\fP> のホームページや -<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。 +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH バグ バグは <\fIhttp://bugs.debian.org/\fP> にあるバグ追跡システムに live\-build diff --git a/manpages/ja/lb_config.ja.1 b/manpages/ja/lb_config.ja.1 index 8c602aa..834c3fc 100644 --- a/manpages/ja/lb_config.ja.1 +++ b/manpages/ja/lb_config.ja.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト" .SH 名前 -\fBlb config\fP \- 設定ディレクトリを作成します +\fBlb_config\fP \- Create config directory .SH 概要 \fBlb config\fP [\fIlive\-build オプション\fP] @@ -44,7 +44,9 @@ .br [\fB\-\-bootappend\-live\fP \fIパラメータ\fP|\fI"パラメータ"\fP] .br - [\fB\-\-bootloader\fP grub|grub2|syslinux] + [\fB\-\-bootappend\-live\-failsafe\fP \fIPARAMETER\fP|\fI"PARAMETERS"\fP] +.br + [\fB\-\-bootloaders\fP grub\-legacy|grub\-pc|syslinux|grub\-efi] .br [\fB\-\-cache\fP true|false] .br @@ -79,6 +81,10 @@ [\fB\-\-debian\-installer\-preseedfile\fP \fIファイル\fP|\fIURL\fP] .br [\fB\-\-debian\-installer\-gui\fP true|false] +.br + [\fB\-\-debootstrap\-options\fP \fIOPTIONS\fP] +.br + [\fB\-\-debootstrap\-script\fP \fISCRIPT\fP] .br [\fB\-\-debug\fP] .br @@ -284,29 +290,38 @@ ビルドするイメージの種類を決定します。デフォルトで、syslinux を利用するイメージではハードディスク向けイメージと同じようにも利用できる CD/DVD イメージをビルドするため iso\-hybrid が、syslinux 以外のイメージでは iso がセットされます。 .IP "\fB\-\-binary\-filesystem\fP fat16|fat32|ext2|ext3|ext4" 4 -指定した種類のイメージで利用するファイルシステムを指定します。これは選択した種類のバイナリイメージでファイルシステムを選択できる場合にのみ効果があります。例えば -iso 選択時に作成される CD/DVD のファイルシステムは常に ISO9660 -となります。USBメモリ向けのhddイメージをビルドする場合にはこれが有効になります。sparc のデフォルトが ext4 -である例外を除く全アーキテクチャでデフォルトが fat16 となっていることに注意してください。また、fat16 -選択時に出来上がったバイナリイメージのサイズが2GBを超えた場合はそのバイナリのファイルシステムは自動的に fat32 -に切り替えられることに注意してください。 +defines the filesystem to be used in the image type. This only has an effect +if the selected binary image type lets you choose a filesystem. For example, +when selection iso the resulting CD/DVD has always the filesystem +ISO9660. When building hdd images for usb sticks, this is active. Note that +it defaults to fat16 on all architectures except sparc where it defaults to +ext4. Also note that if you choose fat16 and your resulting binary image +gets bigger than 2GB, the binary filesystem automatically gets switched to +fat32. .IP "\fB\-\-bootappend\-install\fP \fIパラメータ\fP|\(dq\fIパラメータ\fP\(dq" 4 debian\-installer を収録した場合、debian\-installer 特有のブートパラメータをセットします。 .IP "\fB\-\-bootappend\-live\fP \fIパラメータ\fP|\(dq\fIパラメータ\fP\(dq" 4 debian\-live 特有のブートパラメータをセットします。ブートパラメータの全容は \fIlive\-boot\fP(7) 及び \fIlive\-config\fP(7) マニュアルページにあります。 -.IP "\fB\-\-bootloader\fP grub|grub2|syslinux" 4 -生成されたイメージで利用するブートローダを選択します。これは選択した種類のバイナリイメージでブートローダを選択できる場合にのみ効果があります。例えば -iso をビルドする場合は常に syslinux (さらに言えば isolinux) -が利用されます。また、バイナリイメージの種類とブートローダの組み合わせの中には、可能ではあるものの live\-build -でのサポートが追いついていないものがあり得ることに注意してください。\fBlb config\fP -はそういった未サポートの設定の作成には失敗し、そのことについて説明します。amd64 や i386 用のhddイメージでは syslinux -がデフォルトとなっています。 +.IP "\fB\-\-bootappend\-live\-failsafe\fP \fIPARAMETER\fP|\(dq\fIPARAMETERS\fP\(dq" 4 +sets boot parameters specific to debian\-live failsafe boot entries. A +complete list of boot parameters can be found in the \fIlive\-boot\fP(7) and +\fIlive\-config\fP(7) manual pages. +.IP "\fB\-\-bootloaders\fP grub\-legacy|grub\-pc|syslinux|grub\-efi" 4 +defines which bootloader is being used in the generated image. This has only +an effect if the selected binary image type lets you choose the +bootloader. For example, if you build a iso, always syslinux (or more +precise, isolinux) is being used. Also note that some combinations of binary +images types and bootloaders may be possible but live\-build does not support +them yet. \fBlb config\fP will fail to create such a not yet supported +configuration and give a explanation about it. For hdd images on amd64 and +i386, the default is syslinux. .IP "\fB\-\-cache\fP true|false" 4 全体としてキャッシュを使うか否か大域的に決定します。異なるキャッシュを、キャッシュそれぞれのオプションで制御できます。 .IP "\fB\-\-cache\-indices\fP true|false" 4 -ダウンロードしたパッケージ索引や一覧をキャッシュするか否かを決定します。デフォルトで false -となっています。有効にするとイメージを完全にオフラインで再ビルドできるようになりますが、以後の更新は得られなくなります。 +defines if downloaded package indices and lists should be cached which is +false by default. Enabling it lets you rebuild an image completely offline, +however, you would not get updates anymore then. .IP "\fB\-\-cache\-packages\fP true|false" 4 ダウンロードしたパッケージファイルをキャッシュするか否かを決定します。デフォルトで true となっています。無効化するとビルドディレクトリの容量を節約できますが、再ビルドした場合には不要な転送が発生することを覚えておいてください。一般にこれは常に @@ -325,7 +340,8 @@ .IP "\fB\-\-compression\fP bzip2|gzip|lzip|none" 4 tar アーカイブの圧縮に利用する圧縮プログラムを決定します。デフォルトは gzip です。 .IP "\fB\-\-config\fP \fIGIT_URL\fP::\fIGIT_ID\fP" 4 -設定ツリーをgitリポジトリから取得できます。オプションとして Git Id (ブランチやコミット、タグ等) を指定できます。 +bootstrap the config tree from a git repository, optionally appended by a +Git Id (branch, commit, tag, etc.). .IP "\fB\-\-build\-with\-chroot\fP true|false" 4 live\-build がバイナリイメージのビルドに chroot 内のツールを使うのか、chroot ではなくホストのシステムツールを取り込んで使うのかを決定します。これは非常に危険なオプションであり、ホストシステムのツールを利用することで汚染され、必要とするツール @@ -361,6 +377,11 @@ .IP "\fB\-\-debian\-installer\-gui\fP true|false" 4 debian\-installer グラフィカルGTKインターフェイスを true にするか否かを決定します。デフォルトでは、Debian モードや Ubuntu のほとんどのバージョンで true、それ以外では false となっています。 +.IP "\fB\-\-debootstrap\-options\fP \fIOPTIONS\fP" 4 +passes the given options to debootstrap when setting up the base system. +.IP "\fB\-\-debootstrap\-script\fP \fISCRIPT\fP" 4 +tells debootstrap to use an alternate bootstrap script (last parameter to +debootstrap). .IP \fB\-\-debug\fP 4 デバッグ情報のメッセージを表示します。 .IP "\-d|\fB\-\-distribution\fP \fIコード名\fP" 4 @@ -370,8 +391,10 @@ .IP "\-d|\fB\-\-parent\-debian\-installer\-distribution\fP \fIコード名\fP" 4 出来上がる Live システムの派生元の debian\-installer のディストリビューションを決定します。 .IP \fB\-\-dump\fP 4 -現在存在している Live システムの設定と利用されている live\-build -のバージョンの報告を作成します。これはバグ報告の際に有用で、エラーが起きている部分を見つけ出し、再現するのに必要となる情報を全て提供します。 +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 +reports, we do get all information required for us to locate and replicate +an error. .IP "\fB\-\-fdisk\fP fdisk|fdisk.dist" 4 利用するホストシステムの fdisk バイナリのファイル名を指定します。これは自動的に検出されるため通常は独自に指定する必要はありません。 .IP \fB\-\-force\fP 4 @@ -428,7 +451,8 @@ .IP "\fB\-\-linux\-packages\fP \(dq\fIパッケージ\fP\(dq" 4 カーネルのパッケージ命名規則に従った内部名をセットします。Debian のカーネルパッケージを利用している場合は調整する必要はありません。Debian の命名規則に従わない独自のカーネルパッケージを利用する場合にはこのオプションでパッケージの前半部 (Debian の場合は -linux\-image\-2.6) だけを忘れずに指定し、\fI前半部\fP\-\fIフレーバー\fP (Debian の場合は例えば linux\-image\-686\-pae) +linux\-image\-2.6) だけを忘れずに指定し、\fI前半部\fP\-\fIフレーバー\fP (Debian の場合は例えば +linux\-image\-686\-pae) が有効なパッケージ名になるようにしてください。好ましいのは、メタパッケージがある場合にはその名前を前半部に使うことで、そうすると設定とABIが独立します。また、unionfs や aufs、squashfs のバイナリモジュールパッケージについても、ツリー外でビルドした場合にはその前半部を含める必要があることを忘れないようにしてください。 @@ -601,9 +625,8 @@ このプログラムは live\-build の一部です。 .SH ホームページ -live\-build 及び Live -システムプロジェクトについてのさらなる情報は、<\fIhttp://live\-systems.org/\fP> のホームページや -<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。 +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH バグ バグは <\fIhttp://bugs.debian.org/\fP> にあるバグ追跡システムに live\-build diff --git a/manpages/ja/lb_source.ja.1 b/manpages/ja/lb_source.ja.1 index 1041b70..a09cfb3 100644 --- a/manpages/ja/lb_source.ja.1 +++ b/manpages/ja/lb_source.ja.1 @@ -6,7 +6,7 @@ .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト" .SH 名前 -\fBlb source\fP \- ソース段階を完了させます +\fBlb_source\fP \- Complete the source stage .SH 概要 \fBlb source\fP [\fIlive\-build オプション\fP] @@ -29,9 +29,8 @@ このプログラムは live\-build の一部です。 .SH ホームページ -live\-build 及び Live -システムプロジェクトについてのさらなる情報は、<\fIhttp://live\-systems.org/\fP> のホームページや -<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。 +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH バグ バグは <\fIhttp://bugs.debian.org/\fP> にあるバグ追跡システムに live\-build diff --git a/manpages/ja/live-build.ja.7 b/manpages/ja/live-build.ja.7 index a6c63ac..19a6113 100644 --- a/manpages/ja/live-build.ja.7 +++ b/manpages/ja/live-build.ja.7 @@ -23,8 +23,9 @@ \fIコマンド\fPは live\-build コマンドの名前です (以下参照)。 .PP .\" FIXME -live\-build 及び Live システムプロジェクトについてのさらなる情報は、それぞれの man ページや -<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。 +More documentation about how to use live\-build is available in the +individual manpages for each helper and in the manual at +<\fIhttps://debian\-live.alioth.debian.org/manual/\fP>. .SH オプション .\" FIXME @@ -64,30 +65,29 @@ .\" FIXME 高レベルコマンドは主要コマンドといくらかの副次的なユーザ向けユーティリティに分けられています。 .SS 主要コマンド -.IP \fBlb_config\fP(1) 4 -live\-build の設定ファイルを作成します -.IP \fBlb_bootstrap\fP(1) 4 -第1の段階で基本的な debian システムのパッケージ収集を行います -.IP \fBlb_chroot\fP(1) 4 -第2の段階で chroot の独自化を行います -.IP \fBlb_binary\fP(1) 4 -第3の段階でバイナリイメージの生成を行います -.IP \fBlb_source\fP(1) 4 -オプションの第4の段階でソースイメージの生成を行います -.IP \fBlb_clean\fP(1) 4 -システムのビルド用ディレクトリを掃除します +.IP "\fBlb config\fP(1)" 4 +creates configuration for live\-build +.IP "\fBlb bootstrap\fP(1)" 4 +executes the first build stage, creating (bootstraping) a basic Debian root +filesystem +.IP "\fBlb chroot\fP(1)" 4 +executes the second build stage, building the live OS filesystem +.IP "\fBlb installer\fP(1)" 4 +executes the third build stage, obtaining installer components (optional) +.IP "\fBlb binary\fP(1)" 4 +executes the fourth build stage, generating a binary image +.IP "\fBlb source\fP(1)" 4 +executes the fifth build stage, generating a source image (optional) +.IP "\fBlb clean\fP(1)" 4 +cleans up system build directories .SS 副次的なコマンド .IP \fBlb\fP(1) 4 -live\-build の包括的なラッパー -.IP \fBlb_build\fP(1) 4 -全段階のラッパーです -.IP \fBlb_local\fP(1) 4 -ローカルの live\-build を利用する支援コマンド -.IP \fBlb_testroot\fP(1) 4 -.\" FIXME -システムが root により構成されていることを確認します - -.SH "低レベルコマンド (PLUMBING)" +generic live\-build script execution wrapper +.IP "\fBlb build\fP(1)" 4 +.\" FIXME +alias for all build stages + +.SH "LOW\-LEVEL COMMANDS (PLUMBING) \- BUILD STAGE COMPONENTS" .\" FIXME live\-build の実際の作業は低レベルコマンドにより実装されています。低レベルコマンドはエンドユーザが直接実行することは想定していません。高レベルの主要コマンドに操作させることにより、様々な低レベルコマンドを必ず正しい順で実行するようにしています。しかし、live\-build @@ -95,119 +95,176 @@ .PP この低レベルコマンドへのインターフェイス (オプション群やセマンティクス) は高レベルの主要コマンドよりもはるかに安定していることが求められることに注意してください。それに対して高レベルの主要コマンドへのインターフェイスは、エンドユーザの使い勝手改善のために変更される対象となります。 -.SS パッケージ収集用のコマンド -.IP \fBlb_bootstrap_cache\fP(1) 4 -パッケージ収集段階をキャッシュします -.IP \fBlb_bootstrap_debootstrap\fP(1) 4 -debootstrap(8) により Debian システムのパッケージ収集を行います -.SS "chroot コマンド" -.IP \fBlb_chroot_apt\fP(1) 4 -/etc/apt/apt.conf の管理 -.IP \fBlb_chroot_cache\fP(1) 4 -chroot 段階をキャッシュします -.IP \fBlb_chroot_debianchroot\fP(1) 4 -/etc/debian_chroot の管理 -.IP \fBlb_chroot_devpts\fP(1) 4 -/dev/pts をマウントします。 -.IP \fBlb_chroot_dpkg\fP(1) 4 -/sbin/dpkg の管理 -.IP \fBlb_chroot_hacks\fP(1) 4 -hacks (応急的な操作を行うスクリプト) を chroot で実行します -.IP \fBlb_chroot_hostname\fP(1) 4 -/bin/hostname の管理 -.IP \fBlb_chroot_hosts\fP(1) 4 -/etc/hosts の管理 -.IP \fBlb_chroot_install\-packages\fP(1) 4 -キューにあるパッケージを chroot にインストールします -.IP \fBlb_chroot_interactive\fP(1) 4 -対話的にビルドします -.IP \fBlb_chroot_linux\-image\fP(1) 4 -/etc/kernel\-img.conf の管理 -.IP \fBlb_chroot_hooks\fP(1) 4 -ローカルフックを chroot で実行します -.IP \fBlb_chroot_local\-includes\fP(1) 4 -ローカルファイルを chroot にコピーします -.IP \fBlb_chroot_packages\fP(1) 4 -chroot にインストールするパッケージをキューに追加します -.IP \fBlb_chroot_local\-patches\fP(1) 4 -ローカルのパッチを chroot に適用させます -.IP \fBlb_chroot_local\-preseed\fP(1) 4 -ローカルにある debconf の preseed 用ファイルを利用します -.IP \fBlb_chroot_packagelists\fP(1) 4 -chroot にインストールするパッケージ一覧をキューに追加します -.IP \fBlb_chroot_proc\fP(1) 4 -/proc をマウントします。 -.IP \fBlb_chroot_resolv\fP(1) 4 -/etc/resolv.conf の管理 -.IP \fBlb_chroot_selinuxfs\fP(1) 4 -/selinux をマウントします。 -.IP \fBlb_chroot_archives\fP(1) 4 -/etc/apt/sources.list の管理 -.IP \fBlb_chroot_sysfs\fP(1) 4 -/sys をマウントします。 -.IP \fBlb_chroot_sysv\-rc\fP(1) 4 -/usr/sbin/policy\-rc.d の管理 -.IP \fBlb_chroot_task\-lists\fP(1) 4 -タスク一覧を chroot にインストールします -.SS バイナリコマンド -.IP \fBlb_binary_chroot\fP(1) 4 -chroot を chroot にコピーします -.IP \fBlb_binary_debian\-installer\fP(1) 4 -debian\-installer をバイナリにインストールします -.IP \fBlb_binary_disk\fP(1) 4 -ディスク情報をバイナリにインストールします -.IP \fBlb_binary_grub\fP(1) 4 -grub をバイナリにインストールします -.IP \fBlb_binary_grub2\fP(1) 4 -grub2 をバイナリにインストールします -.IP \fBlb_binary_includes\fP(1) 4 -ファイルをバイナリにコピーします -.IP \fBlb_binary_iso\fP(1) 4 -ISOバイナリイメージをビルドします -.IP \fBlb_binary_linux\-image\fP(1) 4 -linux\-image をバイナリにインストールします -.IP \fBlb_binary_local\-hooks\fP(1) 4 -ローカルフックをバイナリで実行します -.IP \fBlb_binary_local\-includes\fP(1) 4 -ファイルをバイナリにコピーします -.IP \fBlb_binary_local\-packagelists\fP(1) 4 -ローカルパッケージ一覧をバイナリにインストールします -.IP \fBlb_binary_manifest\fP(1) 4 -名簿ファイルを作成します -.IP \fBlb_binary_checksums\fP(1) 4 -バイナリのチェックサム (md5、sha1、sha256 のどれか) を作成します -.IP \fBlb_binary_memtest\fP(1) 4 -memtest をバイナリにインストールします -.IP \fBlb_binary_net\fP(1) 4 -ネットワークブート用バイナリイメージをビルドします -.IP \fBlb_binary_rootfs\fP(1) 4 -rootfs イメージをビルドします -.IP \fBlb_binary_syslinux\fP(1) 4 -syslinux をバイナリにインストールします -.IP \fBlb_binary_tar\fP(1) 4 -ハードディスクバイナリイメージをビルドします -.IP \fBlb_binary_hdd\fP(1) 4 -バイナリhddイメージをビルドします -.IP \fBlb_binary_win32\-loader\fP(1) 4 -win32\-loader をバイナリにインストールします -.SS ソースコマンド -.IP \fBlb_source_debian\fP(1) 4 -ソースをダウンロードします -.IP \fBlb_source_debian\-live\fP(1) 4 -debian\-live の設定をソースにコピーします。 -.IP \fBlb_source_disk\fP(1) 4 -ディスク情報をソースにインストールします -.IP \fBlb_source_iso\fP(1) 4 -ISOソースイメージをビルドします -.IP \fBlb_source_checksums\fP(1) 4 -ソースのチェックサム (md5、sha1、sha256 のどれか) を作成します -.IP \fBlb_source_net\fP(1) 4 -build source net image -.IP \fBlb_source_tar\fP(1) 4 -ソースの tar アーカイブをビルドします -.IP \fBlb_source_hdd\fP(1) 4 -.\" FIXME -ソースhddイメージをビルドします +.SS "Bootstrap stage specific commands" +.IP "\fBlb bootstrap_archives\fP(1)" 4 +applies apt archive configuration +.IP "\fBlb bootstrap_cache\fP(1)" 4 +in save mode, saves to cache a copy of the generated bootstrap directory, +and in restore mode, restores from cache a previously generated copy +.IP "\fBlb bootstrap_debootstrap\fP(1)" 4 +creates (bootstrap) a basic Debian root filesystem using debootstrap(8) +.SS "Chroot stage specific commands" +.PP +Note: The following chroot_ prefixed commands are used in building the live +OS filesystem. Another set of similarly prefixed files are listed separately +(see further down). +.IP "\fBlb chroot_cache\fP(1)" 4 +in save mode, saves to cache a copy of the chroot directory, and in restore +mode, restores from cache a previously generated copy +.IP "\fBlb chroot_firmware\fP(1)" 4 +compiles a list of firmware packages to be installed in the live OS root +filesystem +.IP "\fBlb chroot_hacks\fP(1)" 4 +executes local hacks against the live OS root filesystem, if any are +provided +.IP "\fBlb chroot_hooks\fP(1)" 4 +executes local hooks against the live OS root filesystem, if any are +provided +.IP "\fBlb chroot_includes\fP(1)" 4 +copies a set of local files from the config directory into the live OS root +filesystem, if any are provided +.IP "\fBlb chroot_install\-packages\fP(1)" 4 +installs into the live OS root filesystem any packages listed in local +package lists +.IP "\fBlb chroot_interactive\fP(1)" 4 +pauses the build process and starts an interactive shell from the live OS +root filesystem, providing an oportunity for manual modifications or +testing; note that this is (currently) usually executed with several chroot +prep modifications applied (see description of these further down) +.IP "\fBlb chroot_linux\-image\fP(1)" 4 +compiles a list of kernel images to be installed in the live OS root +filesystem +.IP "\fBlb chroot_live\-packages\fP(1)" 4 +installs a set of live system specific packages to the live OS root +filesystem +.IP "\fBlb chroot_package\-lists\fP(1)" 4 +compiles a list of packages provided in the user\' local config to be +installed in the live OS root filesystem +.IP "\fBlb chroot_preseed\fP(1)" 4 +installs pre\-configured answers to certain install prompts into the live OS +root filesystem +.SS "Installer stage specific commands" +.IP "\fBlb installer_debian\-installer\fP(1)" 4 +obtains and sets up Debian installer(d\-i) components +.IP "\fBlb installer_preseed\fP(1)" 4 +installs pre\-configured answers to certain install prompts +.SS "Binary stage specific commands" +.IP "\fBlb binary_checksums\fP(1)" 4 +creates checksums (md5, sha1, and/or sha256) for live image content +.IP "\fBlb binary_chroot\fP(1)" 4 +duplicates the chroot directory, to place a copy of what whould be the +completed live OS root filesystem to one side, allowing the original to +continue to be used in executing certain parts of the remainder of the build +process +.IP "\fBlb binary_disk\fP(1)" 4 +creates disk information files to be added to live image +.IP "\fBlb binary_grub\fP(1)" 4 +installs grub into live image to provide image boot capability +.IP "\fBlb binary_grub2\fP(1)" 4 +installs grub2 into live image to provide image boot capability +.IP "\fBlb binary_hdd\fP(1)" 4 +compiles the final live image into an hdd image file +.IP "\fBlb binary_hooks\fP(1)" 4 +executes local hooks against the live image, if any are provided +.IP "\fBlb binary_includes\fP(1)" 4 +copies a set of local files from the config directory into the live image, +if any are provided +.IP "\fBlb binary_iso\fP(1)" 4 +compiles the final live image into an iso file +.IP "\fBlb binary_linux\-image\fP(1)" 4 +copies the linux\-image into the live image +.IP "\fBlb binary_loadlin\fP(1)" 4 +bundles a copy of loadlin into the live image +.IP "\fBlb binary_manifest\fP(1)" 4 +creates manifest of packages installed into live OS filesystem, and list of +packages to be excluded by a persistence mechanism installing the live OS to +disk +.IP "\fBlb binary_memtest\fP(1)" 4 +bundles a copy of memtest into the live image +.IP "\fBlb binary_netboot\fP(1)" 4 +compiles the final live image into a netboot tar archive +.IP "\fBlb binary_package\-lists\fP(1)" 4 +processes local lists of packages to obtain and bundle into image (from +which they could later be installed if not already) +.IP "\fBlb binary_rootfs\fP(1)" 4 +wraps up the completed live OS root filesystem into a virtual file system +image +.IP "\fBlb binary_syslinux\fP(1)" 4 +installs syslinux into live image to provide image boot capability +.IP "\fBlb binary_tar\fP(1)" 4 +compiles the final live image into a tar archive +.IP "\fBlb binary_win32\-loader\fP(1)" 4 +bundles a copy of win32\-loader into the live image and creates an +autorun.inf file +.IP "\fBlb binary_zsync\fP(1)" 4 +builds zsync control files +.SS "Source stage specific commands" +.IP "\fBlb source_checksums\fP(1)" 4 +creates checksums (md5, sha1, and/or sha256) for source image content +.IP "\fBlb source_debian\fP(1)" 4 +downloads source packages for bundling into source image +.IP "\fBlb source_disk\fP(1)" 4 +creates disk information files to be added to source image +.IP "\fBlb source_hdd\fP(1)" 4 +compiles the final source image into an hdd image file +.IP "\fBlb source_hooks\fP(1)" 4 +executes local hooks against the source image, if any are provided +.IP "\fBlb source_iso\fP(1)" 4 +compiles the final source image into an iso file +.IP "\fBlb source_live\fP(1)" 4 +copies live\-build config into source +.IP "\fBlb source_tar\fP(1)" 4 +.\" FIXME +compiles the final source image into a tar archive + +.SH "LOW\-LEVEL COMMANDS (PLUMBING) \- CHROOT PREP COMPONENTS" +.\" FIXME +The notes above under the section regarding build\-stage specific low\-level +plumbing commands also apply here. +.PP +The following chroot_ prefixed commands are used throughout the various +primary stages of the build process to apply and remove modifications to a +chroot root filesystem. Generally these are used to apply modification that +setup the chroot for use (execution of programs within it) during the build +process, and later to remove those modification, unmounting things that were +mounted, and making the chroot suitable for use as the root filesystem of +the live OS to be bundled into the live image. +.IP "\fBlb chroot_apt\fP(1)" 4 +manages apt configuration; in apply mode it applies configuration for use +during build process, and in remove mode removes that configuration +.IP "\fBlb chroot_archives\fP(1)" 4 +manages apt archive source lists; in apply mode it applies source list +configurations suitable for use of the chroot in the build process, and in +remove mode replaces that with a configuration suitable for the final live +OS +.IP "\fBlb chroot_debianchroot\fP(1)" 4 +manages a /etc/debian_chroot file +.IP "\fBlb chroot_devpts\fP(1)" 4 +manages mounting of /dev/pts +.IP "\fBlb chroot_dpkg\fP(1)" 4 +manages dpkg; in apply mode disabling things like the start\-stop\-daemon, and +in remove mode enabling them again +.IP "\fBlb chroot_hostname\fP(1)" 4 +manages the hostname configuration +.IP "\fBlb chroot_hosts\fP(1)" 4 +manages the /etc/hosts file +.IP "\fBlb chroot_proc\fP(1)" 4 +manages mounting of /proc +.IP "\fBlb chroot_resolv\fP(1)" 4 +manages configuration of the /etc/resolv.conf file +.IP "\fBlb chroot_selinuxfs\fP(1)" 4 +manages mounting of /sys/fs/selinux +.IP "\fBlb chroot_sysfs\fP(1)" 4 +manages mounting of /sys +.IP "\fBlb chroot_sysv\-rc\fP(1)" 4 +manages the /usr/sbin/policy\-rc.d file +.IP "\fBlb chroot_tmpfs\fP(1)" 4 +manages configuration of dpkg to use a tmpfs filesystem +.IP "\fBlb chroot_upstart\fP(1)" 4 +.\" FIXME +manages use of upstart /sbin/initctl program; in apply mode blocking +execution through a dpkg diversion, and in remove mode enabling execution +again .SH 設定ファイル .\" FIXME @@ -217,11 +274,12 @@ ページを見てください。こういったファイルには一般的に、変数とそれに指定する値を1行に1件ずつ収録します。live\-build の一部のプログラムでは組にした値や、変数の指定にわずかに複雑な方法を採っているものがあります。 .PP -例えば lb_bootstrap_debootstrap は利用するオプションを読み取るのに config/bootstrap 及び -config/bootstrap_debootstrap -という名のファイルを使います。利用するファイルの名前やフォーマットの詳細については個々のコマンドの man -ページを見てください。こういったファイルには一般的に、変数とそれに指定する値を1行に1件ずつ収録します。live\-build -の一部のプログラムでは組にした値や、変数の指定にわずかに複雑な方法を採っているものがあります。 +For example, lb bootstrap_debootstrap uses files named config/bootstrap and +config/bootstrap_debootstrap to read the options it will use. See the man +pages of individual commands for details about the names and formats of the +files they use. Generally, these files contain variables with values +assigned, one variable per line. Some programs in live\-build use pairs of +values or slightly more complicated variable assignments. .PP live\-build は実行中のシェルに存在する環境変数を尊重することに注意してください。変数が設定ファイルから読み取れる場合にはそれが環境変数より優先され、コマンドラインオプションで指定された場合にはそれが設定ファイルの値より優先されます。ある変数が見つからない、つまり値がセットされていない場合は @@ -247,9 +305,8 @@ このプログラムは live\-build の一部です。 .SH ホームページ -live\-build 及び Live -システムプロジェクトについてのさらなる情報は、<\fIhttp://live\-systems.org/\fP> のホームページや -<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。 +More information about live\-build and the Live Systems project can be found +on the homepage at <\fIhttps://debian\-live.alioth.debian.org/\fP>. .SH バグ バグは <\fIhttp://bugs.debian.org/\fP> にあるバグ追跡システムに live\-build diff --git a/manpages/po/fr/lb.1.po b/manpages/po/fr/lb.1.po index e9d2dfe..cb41c59 100644 --- a/manpages/po/fr/lb.1.po +++ b/manpages/po/fr/lb.1.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build 5.0~a11-1\n" -"POT-Creation-Date: 2015-10-21 02:21+0200\n" +"POT-Creation-Date: 2017-08-29 14:07+0200\n" "PO-Revision-Date: 2015-09-20 14:53+0200\n" "Last-Translator: Olivier Humbert \n" "Language-Team: none\n" @@ -28,7 +28,7 @@ #: en/live-build.7:1 #, no-wrap msgid "2015-10-21" -msgstr "21.10.2015" +msgstr "29.08.2017" #. type: TH #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1 @@ -79,7 +79,7 @@ #. 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:223 en/lb_source.1:9 +#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:229 en/lb_source.1:9 #: en/live-build.7:11 #, no-wrap msgid "DESCRIPTION" @@ -96,7 +96,7 @@ #. 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:232 en/lb_source.1:14 +#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:238 en/lb_source.1:14 #: en/live-build.7:20 #, no-wrap msgid "OPTIONS" @@ -115,8 +115,8 @@ #. 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:462 en/lb_source.1:17 -#: en/live-build.7:213 +#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:474 en/lb_source.1:17 +#: en/live-build.7:229 #, no-wrap msgid "FILES" msgstr "FICHIERS" @@ -130,58 +130,64 @@ #. 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:469 en/lb_source.1:20 -#: en/live-build.7:217 +#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:481 en/lb_source.1:20 +#: en/live-build.7:233 #, no-wrap msgid "SEE ALSO" msgstr "VOIR AUSSI" #. 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:471 en/lb_source.1:22 +#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:483 en/lb_source.1:22 msgid "I(7)" msgstr "I(7)" #. 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:477 en/lb_source.1:24 -#: en/live-build.7:223 +#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:489 en/lb_source.1:24 +#: en/live-build.7:239 msgid "This program is a part of live-build." msgstr "Ce programme est une partie de live-build." #. 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:478 en/lb_source.1:25 -#: en/live-build.7:224 +#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:490 en/lb_source.1:25 +#: en/live-build.7:240 #, no-wrap msgid "HOMEPAGE" msgstr "PAGE D'ACCUEIL" #. 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:480 en/lb_source.1:27 -#: en/live-build.7:226 +#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27 +#: en/live-build.7:242 +#, fuzzy +#| msgid "" +#| "More information about live-build and the Live Systems project can be " +#| "found on the homepage at EIE and in the manual at EIE." msgid "" "More information about live-build and the Live Systems project can be found " -"on the homepage at EIE and in the manual " -"at EIE." +"on the homepage at EIE." msgstr "" "Davantage d'informations à propos de live-build et du projet Live Systems " -"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." +"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." #. 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:481 en/lb_source.1:28 -#: en/live-build.7:227 +#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:493 en/lb_source.1:28 +#: en/live-build.7:243 #, no-wrap msgid "BUGS" msgstr "BOGUES" #. 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:483 en/lb_source.1:30 -#: en/live-build.7:229 +#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:495 en/lb_source.1:30 +#: en/live-build.7:245 msgid "" "Bugs can be reported by submitting a bugreport for the live-build package in " "the Bug Tracking System at EIE or by " @@ -195,16 +201,16 @@ #. 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:484 en/lb_source.1:31 -#: en/live-build.7:230 +#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:496 en/lb_source.1:31 +#: en/live-build.7:246 #, no-wrap msgid "AUTHOR" msgstr "AUTEUR" #. 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:485 en/lb_source.1:32 -#: en/live-build.7:231 +#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:497 en/lb_source.1:32 +#: en/live-build.7:247 msgid "" "live-build was written by Daniel Baumann EIE." msgstr "" diff --git a/manpages/po/fr/lb_binary.1.po b/manpages/po/fr/lb_binary.1.po index 8383e60..070d39b 100644 --- a/manpages/po/fr/lb_binary.1.po +++ b/manpages/po/fr/lb_binary.1.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build 5.0~a11-1\n" -"POT-Creation-Date: 2015-10-21 02:21+0200\n" +"POT-Creation-Date: 2017-08-29 14:07+0200\n" "PO-Revision-Date: 2015-09-20 14:53+0200\n" "Last-Translator: Olivier Humbert \n" "Language-Team: none\n" @@ -28,7 +28,7 @@ #: en/live-build.7:1 #, no-wrap msgid "2015-10-21" -msgstr "21.10.2015" +msgstr "29.08.2017" #. type: TH #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1 @@ -64,7 +64,7 @@ #. 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:223 en/lb_source.1:9 +#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:229 en/lb_source.1:9 #: en/live-build.7:11 #, no-wrap msgid "DESCRIPTION" @@ -72,7 +72,7 @@ #. 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:232 en/lb_source.1:14 +#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:238 en/lb_source.1:14 #: en/live-build.7:20 #, no-wrap msgid "OPTIONS" @@ -80,8 +80,8 @@ #. 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:462 en/lb_source.1:17 -#: en/live-build.7:213 +#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:474 en/lb_source.1:17 +#: en/live-build.7:229 #, no-wrap msgid "FILES" msgstr "FICHIERS" @@ -95,58 +95,64 @@ #. 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:469 en/lb_source.1:20 -#: en/live-build.7:217 +#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:481 en/lb_source.1:20 +#: en/live-build.7:233 #, no-wrap msgid "SEE ALSO" msgstr "VOIR AUSSI" #. 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:471 en/lb_source.1:22 +#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:483 en/lb_source.1:22 msgid "I(7)" msgstr "I(7)" #. 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:477 en/lb_source.1:24 -#: en/live-build.7:223 +#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:489 en/lb_source.1:24 +#: en/live-build.7:239 msgid "This program is a part of live-build." msgstr "Ce programme est une partie de live-build." #. 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:478 en/lb_source.1:25 -#: en/live-build.7:224 +#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:490 en/lb_source.1:25 +#: en/live-build.7:240 #, no-wrap msgid "HOMEPAGE" msgstr "PAGE D'ACCUEIL" #. 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:480 en/lb_source.1:27 -#: en/live-build.7:226 +#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27 +#: en/live-build.7:242 +#, fuzzy +#| msgid "" +#| "More information about live-build and the Live Systems project can be " +#| "found on the homepage at EIE and in the manual at EIE." msgid "" "More information about live-build and the Live Systems project can be found " -"on the homepage at EIE and in the manual " -"at EIE." +"on the homepage at EIE." msgstr "" "Davantage d'informations à propos de live-build et du projet Live Systems " -"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." +"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." #. 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:481 en/lb_source.1:28 -#: en/live-build.7:227 +#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:493 en/lb_source.1:28 +#: en/live-build.7:243 #, no-wrap msgid "BUGS" msgstr "BOGUES" #. 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:483 en/lb_source.1:30 -#: en/live-build.7:229 +#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:495 en/lb_source.1:30 +#: en/live-build.7:245 msgid "" "Bugs can be reported by submitting a bugreport for the live-build package in " "the Bug Tracking System at EIE or by " @@ -160,16 +166,16 @@ #. 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:484 en/lb_source.1:31 -#: en/live-build.7:230 +#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:496 en/lb_source.1:31 +#: en/live-build.7:246 #, no-wrap msgid "AUTHOR" msgstr "AUTEUR" #. 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:485 en/lb_source.1:32 -#: en/live-build.7:231 +#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:497 en/lb_source.1:32 +#: en/live-build.7:247 msgid "" "live-build was written by Daniel Baumann EIE." msgstr "" @@ -178,7 +184,9 @@ #. type: Plain text #: en/lb_binary.1:5 -msgid "B - Complete the binary stage" +#, fuzzy +#| msgid "B - Complete the binary stage" +msgid "B - Complete the binary stage" msgstr "B - Complète le stage bianire" #. type: Plain text diff --git a/manpages/po/fr/lb_bootstrap.1.po b/manpages/po/fr/lb_bootstrap.1.po index aa27aee..6b38599 100644 --- a/manpages/po/fr/lb_bootstrap.1.po +++ b/manpages/po/fr/lb_bootstrap.1.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build 5.0~a11-1\n" -"POT-Creation-Date: 2015-10-21 02:21+0200\n" +"POT-Creation-Date: 2017-08-29 14:07+0200\n" "PO-Revision-Date: 2015-09-20 14:53+0200\n" "Last-Translator: Olivier Humbert \n" "Language-Team: none\n" @@ -28,7 +28,7 @@ #: en/live-build.7:1 #, no-wrap msgid "2015-10-21" -msgstr "21.10.2015" +msgstr "29.08.2017" #. type: TH #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1 @@ -64,7 +64,7 @@ #. 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:223 en/lb_source.1:9 +#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:229 en/lb_source.1:9 #: en/live-build.7:11 #, no-wrap msgid "DESCRIPTION" @@ -72,7 +72,7 @@ #. 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:232 en/lb_source.1:14 +#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:238 en/lb_source.1:14 #: en/live-build.7:20 #, no-wrap msgid "OPTIONS" @@ -80,8 +80,8 @@ #. 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:462 en/lb_source.1:17 -#: en/live-build.7:213 +#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:474 en/lb_source.1:17 +#: en/live-build.7:229 #, no-wrap msgid "FILES" msgstr "FICHIERS" @@ -95,58 +95,64 @@ #. 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:469 en/lb_source.1:20 -#: en/live-build.7:217 +#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:481 en/lb_source.1:20 +#: en/live-build.7:233 #, no-wrap msgid "SEE ALSO" msgstr "VOIR AUSSI" #. 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:471 en/lb_source.1:22 +#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:483 en/lb_source.1:22 msgid "I(7)" msgstr "I(7)" #. 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:477 en/lb_source.1:24 -#: en/live-build.7:223 +#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:489 en/lb_source.1:24 +#: en/live-build.7:239 msgid "This program is a part of live-build." msgstr "Ce programme est une partie de live-build." #. 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:478 en/lb_source.1:25 -#: en/live-build.7:224 +#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:490 en/lb_source.1:25 +#: en/live-build.7:240 #, no-wrap msgid "HOMEPAGE" msgstr "PAGE D'ACCUEIL" #. 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:480 en/lb_source.1:27 -#: en/live-build.7:226 +#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27 +#: en/live-build.7:242 +#, fuzzy +#| msgid "" +#| "More information about live-build and the Live Systems project can be " +#| "found on the homepage at EIE and in the manual at EIE." msgid "" "More information about live-build and the Live Systems project can be found " -"on the homepage at EIE and in the manual " -"at EIE." +"on the homepage at EIE." msgstr "" "Davantage d'informations à propos de live-build et du projet Live Systems " -"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." +"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." #. 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:481 en/lb_source.1:28 -#: en/live-build.7:227 +#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:493 en/lb_source.1:28 +#: en/live-build.7:243 #, no-wrap msgid "BUGS" msgstr "BOGUES" #. 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:483 en/lb_source.1:30 -#: en/live-build.7:229 +#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:495 en/lb_source.1:30 +#: en/live-build.7:245 msgid "" "Bugs can be reported by submitting a bugreport for the live-build package in " "the Bug Tracking System at EIE or by " @@ -160,16 +166,16 @@ #. 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:484 en/lb_source.1:31 -#: en/live-build.7:230 +#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:496 en/lb_source.1:31 +#: en/live-build.7:246 #, no-wrap msgid "AUTHOR" msgstr "AUTEUR" #. 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:485 en/lb_source.1:32 -#: en/live-build.7:231 +#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:497 en/lb_source.1:32 +#: en/live-build.7:247 msgid "" "live-build was written by Daniel Baumann EIE." msgstr "" @@ -178,7 +184,9 @@ #. type: Plain text #: en/lb_bootstrap.1:5 -msgid "B - Complete the bootstrap stage" +#, fuzzy +#| msgid "B - Complete the bootstrap stage" +msgid "B - Complete the bootstrap stage" msgstr "B - Complète le stage d'amorçage" #. type: Plain text diff --git a/manpages/po/fr/lb_build.1.po b/manpages/po/fr/lb_build.1.po index 6dceb79..778ab20 100644 --- a/manpages/po/fr/lb_build.1.po +++ b/manpages/po/fr/lb_build.1.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build 5.0~a11-1\n" -"POT-Creation-Date: 2015-10-21 02:21+0200\n" +"POT-Creation-Date: 2017-08-29 14:07+0200\n" "PO-Revision-Date: 2015-09-20 14:53+0200\n" "Last-Translator: Olivier Humbert \n" "Language-Team: none\n" @@ -28,7 +28,7 @@ #: en/live-build.7:1 #, no-wrap msgid "2015-10-21" -msgstr "21.10.2015" +msgstr "29.08.2017" #. type: TH #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1 @@ -64,7 +64,7 @@ #. 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:223 en/lb_source.1:9 +#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:229 en/lb_source.1:9 #: en/live-build.7:11 #, no-wrap msgid "DESCRIPTION" @@ -72,7 +72,7 @@ #. 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:232 en/lb_source.1:14 +#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:238 en/lb_source.1:14 #: en/live-build.7:20 #, no-wrap msgid "OPTIONS" @@ -80,66 +80,72 @@ #. 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:462 en/lb_source.1:17 -#: en/live-build.7:213 +#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:474 en/lb_source.1:17 +#: en/live-build.7:229 #, no-wrap msgid "FILES" msgstr "FICHIERS" #. 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:469 en/lb_source.1:20 -#: en/live-build.7:217 +#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:481 en/lb_source.1:20 +#: en/live-build.7:233 #, no-wrap msgid "SEE ALSO" msgstr "VOIR AUSSI" #. 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:471 en/lb_source.1:22 +#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:483 en/lb_source.1:22 msgid "I(7)" msgstr "I(7)" #. 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:477 en/lb_source.1:24 -#: en/live-build.7:223 +#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:489 en/lb_source.1:24 +#: en/live-build.7:239 msgid "This program is a part of live-build." msgstr "Ce programme est une partie de live-build." #. 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:478 en/lb_source.1:25 -#: en/live-build.7:224 +#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:490 en/lb_source.1:25 +#: en/live-build.7:240 #, no-wrap msgid "HOMEPAGE" msgstr "PAGE D'ACCUEIL" #. 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:480 en/lb_source.1:27 -#: en/live-build.7:226 +#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27 +#: en/live-build.7:242 +#, fuzzy +#| msgid "" +#| "More information about live-build and the Live Systems project can be " +#| "found on the homepage at EIE and in the manual at EIE." msgid "" "More information about live-build and the Live Systems project can be found " -"on the homepage at EIE and in the manual " -"at EIE." +"on the homepage at EIE." msgstr "" "Davantage d'informations à propos de live-build et du projet Live Systems " -"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." +"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." #. 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:481 en/lb_source.1:28 -#: en/live-build.7:227 +#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:493 en/lb_source.1:28 +#: en/live-build.7:243 #, no-wrap msgid "BUGS" msgstr "BOGUES" #. 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:483 en/lb_source.1:30 -#: en/live-build.7:229 +#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:495 en/lb_source.1:30 +#: en/live-build.7:245 msgid "" "Bugs can be reported by submitting a bugreport for the live-build package in " "the Bug Tracking System at EIE or by " @@ -153,16 +159,16 @@ #. 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:484 en/lb_source.1:31 -#: en/live-build.7:230 +#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:496 en/lb_source.1:31 +#: en/live-build.7:246 #, no-wrap msgid "AUTHOR" msgstr "AUTEUR" #. 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:485 en/lb_source.1:32 -#: en/live-build.7:231 +#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:497 en/lb_source.1:32 +#: en/live-build.7:247 msgid "" "live-build was written by Daniel Baumann EIE." msgstr "" @@ -171,7 +177,10 @@ #. type: Plain text #: en/lb_build.1:5 -msgid "B - Complete the bootstrap, chroot, binary, and source stages" +#, fuzzy +#| msgid "" +#| "B - Complete the bootstrap, chroot, binary, and source stages" +msgid "B - Complete the bootstrap, chroot, binary, and source stages" msgstr "" "B - Complète les stages d'amorçage (bootstrap), de chroot, " "binaire, et source" diff --git a/manpages/po/fr/lb_chroot.1.po b/manpages/po/fr/lb_chroot.1.po index 1c30d5c..3981fd0 100644 --- a/manpages/po/fr/lb_chroot.1.po +++ b/manpages/po/fr/lb_chroot.1.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build 5.0~a11-1\n" -"POT-Creation-Date: 2015-10-21 02:21+0200\n" +"POT-Creation-Date: 2017-08-29 14:07+0200\n" "PO-Revision-Date: 2015-09-20 14:53+0200\n" "Last-Translator: Olivier Humbert \n" "Language-Team: none\n" @@ -28,7 +28,7 @@ #: en/live-build.7:1 #, no-wrap msgid "2015-10-21" -msgstr "21.10.2015" +msgstr "29.08.2017" #. type: TH #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1 @@ -64,7 +64,7 @@ #. 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:223 en/lb_source.1:9 +#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:229 en/lb_source.1:9 #: en/live-build.7:11 #, no-wrap msgid "DESCRIPTION" @@ -72,7 +72,7 @@ #. 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:232 en/lb_source.1:14 +#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:238 en/lb_source.1:14 #: en/live-build.7:20 #, no-wrap msgid "OPTIONS" @@ -80,8 +80,8 @@ #. 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:462 en/lb_source.1:17 -#: en/live-build.7:213 +#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:474 en/lb_source.1:17 +#: en/live-build.7:229 #, no-wrap msgid "FILES" msgstr "FICHIERS" @@ -95,58 +95,64 @@ #. 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:469 en/lb_source.1:20 -#: en/live-build.7:217 +#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:481 en/lb_source.1:20 +#: en/live-build.7:233 #, no-wrap msgid "SEE ALSO" msgstr "VOIR AUSSI" #. 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:471 en/lb_source.1:22 +#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:483 en/lb_source.1:22 msgid "I(7)" msgstr "I(7)" #. 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:477 en/lb_source.1:24 -#: en/live-build.7:223 +#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:489 en/lb_source.1:24 +#: en/live-build.7:239 msgid "This program is a part of live-build." msgstr "Ce programme est une partie de live-build." #. 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:478 en/lb_source.1:25 -#: en/live-build.7:224 +#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:490 en/lb_source.1:25 +#: en/live-build.7:240 #, no-wrap msgid "HOMEPAGE" msgstr "PAGE D'ACCUEIL" #. 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:480 en/lb_source.1:27 -#: en/live-build.7:226 +#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27 +#: en/live-build.7:242 +#, fuzzy +#| msgid "" +#| "More information about live-build and the Live Systems project can be " +#| "found on the homepage at EIE and in the manual at EIE." msgid "" "More information about live-build and the Live Systems project can be found " -"on the homepage at EIE and in the manual " -"at EIE." +"on the homepage at EIE." msgstr "" "Davantage d'informations à propos de live-build et du projet Live Systems " -"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." +"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." #. 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:481 en/lb_source.1:28 -#: en/live-build.7:227 +#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:493 en/lb_source.1:28 +#: en/live-build.7:243 #, no-wrap msgid "BUGS" msgstr "BOGUES" #. 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:483 en/lb_source.1:30 -#: en/live-build.7:229 +#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:495 en/lb_source.1:30 +#: en/live-build.7:245 msgid "" "Bugs can be reported by submitting a bugreport for the live-build package in " "the Bug Tracking System at EIE or by " @@ -160,16 +166,16 @@ #. 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:484 en/lb_source.1:31 -#: en/live-build.7:230 +#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:496 en/lb_source.1:31 +#: en/live-build.7:246 #, no-wrap msgid "AUTHOR" msgstr "AUTEUR" #. 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:485 en/lb_source.1:32 -#: en/live-build.7:231 +#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:497 en/lb_source.1:32 +#: en/live-build.7:247 msgid "" "live-build was written by Daniel Baumann EIE." msgstr "" @@ -178,7 +184,9 @@ #. type: Plain text #: en/lb_chroot.1:5 -msgid "B - Complete the chroot stage" +#, fuzzy +#| msgid "B - Complete the chroot stage" +msgid "B - Complete the chroot stage" msgstr "B - Complète le stage de chroot" #. type: Plain text diff --git a/manpages/po/fr/lb_clean.1.po b/manpages/po/fr/lb_clean.1.po index a3aca3c..cfe89c6 100644 --- a/manpages/po/fr/lb_clean.1.po +++ b/manpages/po/fr/lb_clean.1.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build 5.0~a11-1\n" -"POT-Creation-Date: 2015-10-21 02:21+0200\n" +"POT-Creation-Date: 2017-08-29 14:07+0200\n" "PO-Revision-Date: 2015-09-20 14:53+0200\n" "Last-Translator: Olivier Humbert \n" "Language-Team: none\n" @@ -28,7 +28,7 @@ #: en/live-build.7:1 #, no-wrap msgid "2015-10-21" -msgstr "21.10.2015" +msgstr "29.08.2017" #. type: TH #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1 @@ -64,7 +64,7 @@ #. 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:223 en/lb_source.1:9 +#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:229 en/lb_source.1:9 #: en/live-build.7:11 #, no-wrap msgid "DESCRIPTION" @@ -72,7 +72,7 @@ #. 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:232 en/lb_source.1:14 +#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:238 en/lb_source.1:14 #: en/live-build.7:20 #, no-wrap msgid "OPTIONS" @@ -80,66 +80,72 @@ #. 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:462 en/lb_source.1:17 -#: en/live-build.7:213 +#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:474 en/lb_source.1:17 +#: en/live-build.7:229 #, no-wrap msgid "FILES" msgstr "FICHIERS" #. 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:469 en/lb_source.1:20 -#: en/live-build.7:217 +#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:481 en/lb_source.1:20 +#: en/live-build.7:233 #, no-wrap msgid "SEE ALSO" msgstr "VOIR AUSSI" #. 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:471 en/lb_source.1:22 +#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:483 en/lb_source.1:22 msgid "I(7)" msgstr "I(7)" #. 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:477 en/lb_source.1:24 -#: en/live-build.7:223 +#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:489 en/lb_source.1:24 +#: en/live-build.7:239 msgid "This program is a part of live-build." msgstr "Ce programme est une partie de live-build." #. 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:478 en/lb_source.1:25 -#: en/live-build.7:224 +#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:490 en/lb_source.1:25 +#: en/live-build.7:240 #, no-wrap msgid "HOMEPAGE" msgstr "PAGE D'ACCUEIL" #. 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:480 en/lb_source.1:27 -#: en/live-build.7:226 +#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27 +#: en/live-build.7:242 +#, fuzzy +#| msgid "" +#| "More information about live-build and the Live Systems project can be " +#| "found on the homepage at EIE and in the manual at EIE." msgid "" "More information about live-build and the Live Systems project can be found " -"on the homepage at EIE and in the manual " -"at EIE." +"on the homepage at EIE." msgstr "" "Davantage d'informations à propos de live-build et du projet Live Systems " -"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." +"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." #. 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:481 en/lb_source.1:28 -#: en/live-build.7:227 +#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:493 en/lb_source.1:28 +#: en/live-build.7:243 #, no-wrap msgid "BUGS" msgstr "BOGUES" #. 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:483 en/lb_source.1:30 -#: en/live-build.7:229 +#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:495 en/lb_source.1:30 +#: en/live-build.7:245 msgid "" "Bugs can be reported by submitting a bugreport for the live-build package in " "the Bug Tracking System at EIE or by " @@ -153,16 +159,16 @@ #. 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:484 en/lb_source.1:31 -#: en/live-build.7:230 +#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:496 en/lb_source.1:31 +#: en/live-build.7:246 #, no-wrap msgid "AUTHOR" msgstr "AUTEUR" #. 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:485 en/lb_source.1:32 -#: en/live-build.7:231 +#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:497 en/lb_source.1:32 +#: en/live-build.7:247 msgid "" "live-build was written by Daniel Baumann EIE." msgstr "" @@ -171,7 +177,9 @@ #. type: Plain text #: en/lb_clean.1:5 -msgid "B - Clean build directory" +#, fuzzy +#| msgid "B - Clean build directory" +msgid "B - Clean build directory" msgstr "B - Nettoie le répertoire de construction" #. type: Plain text diff --git a/manpages/po/fr/lb_config.1.po b/manpages/po/fr/lb_config.1.po index 0a20625..b8836ba 100644 --- a/manpages/po/fr/lb_config.1.po +++ b/manpages/po/fr/lb_config.1.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build 5.0~a11-1\n" -"POT-Creation-Date: 2015-10-21 02:21+0200\n" +"POT-Creation-Date: 2017-08-29 14:07+0200\n" "PO-Revision-Date: 2015-09-20 14:53+0200\n" "Last-Translator: Olivier Humbert \n" "Language-Team: none\n" @@ -28,7 +28,7 @@ #: en/live-build.7:1 #, no-wrap msgid "2015-10-21" -msgstr "21.10.2015" +msgstr "29.08.2017" #. type: TH #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1 @@ -64,7 +64,7 @@ #. 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:223 en/lb_source.1:9 +#: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:229 en/lb_source.1:9 #: en/live-build.7:11 #, no-wrap msgid "DESCRIPTION" @@ -72,7 +72,7 @@ #. 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:232 en/lb_source.1:14 +#: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:238 en/lb_source.1:14 #: en/live-build.7:20 #, no-wrap msgid "OPTIONS" @@ -80,66 +80,72 @@ #. 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:462 en/lb_source.1:17 -#: en/live-build.7:213 +#: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:474 en/lb_source.1:17 +#: en/live-build.7:229 #, no-wrap msgid "FILES" msgstr "FICHIERS" #. 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:469 en/lb_source.1:20 -#: en/live-build.7:217 +#: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:481 en/lb_source.1:20 +#: en/live-build.7:233 #, no-wrap msgid "SEE ALSO" msgstr "VOIR AUSSI" #. 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:471 en/lb_source.1:22 +#: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:483 en/lb_source.1:22 msgid "I(7)" msgstr "I(7)" #. 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:477 en/lb_source.1:24 -#: en/live-build.7:223 +#: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:489 en/lb_source.1:24 +#: en/live-build.7:239 msgid "This program is a part of live-build." msgstr "Ce programme est une partie de live-build." #. 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:478 en/lb_source.1:25 -#: en/live-build.7:224 +#: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:490 en/lb_source.1:25 +#: en/live-build.7:240 #, no-wrap msgid "HOMEPAGE" msgstr "PAGE D'ACCUEIL" #. 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:480 en/lb_source.1:27 -#: en/live-build.7:226 +#: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27 +#: en/live-build.7:242 +#, fuzzy +#| msgid "" +#| "More information about live-build and the Live Systems project can be " +#| "found on the homepage at EIE and in the manual at EIE." msgid "" "More information about live-build and the Live Systems project can be found " -"on the homepage at EIE and in the manual " -"at EIE." +"on the homepage at EIE." msgstr "" "Davantage d'informations à propos de live-build et du projet Live Systems " -"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." +"peuvent être trouvées sur la page d'accueil à EIE et dans le manuel à EIE." #. 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:481 en/lb_source.1:28 -#: en/live-build.7:227 +#: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:493 en/lb_source.1:28 +#: en/live-build.7:243 #, no-wrap msgid "BUGS" msgstr "BOGUES" #. 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:483 en/lb_source.1:30 -#: en/live-build.7:229 +#: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:495 en/lb_source.1:30 +#: en/live-build.7:245 msgid "" "Bugs can be reported by submitting a bugreport for the live-build package in " "the Bug Tracking System at EIE or by " @@ -153,16 +159,16 @@ #. 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:484 en/lb_source.1:31 -#: en/live-build.7:230 +#: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:496 en/lb_source.1:31 +#: en/live-build.7:246 #, no-wrap msgid "AUTHOR" msgstr "AUTEUR" #. 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:485 en/lb_source.1:32 -#: en/live-build.7:231 +#: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:497 en/lb_source.1:32 +#: en/live-build.7:247 msgid "" "live-build was written by Daniel Baumann EIE." msgstr "" @@ -171,7 +177,9 @@ #. type: Plain text #: en/lb_config.1:5 -msgid "B - Create config directory" +#, fuzzy +#| msgid "B - Create config directory" +msgid "B - Create config directory" msgstr "B - Crée un répertoire de configuration" #. type: Plain text @@ -262,403 +270,426 @@ #. type: Plain text #: en/lb_config.1:43 -msgid " [B<--bootloader> grub|grub2|syslinux]" +#, fuzzy +#| msgid " [B<--bootappend-live> I|I<\"PARAMETERS\">]" +msgid " [B<--bootappend-live-failsafe> I|I<\"PARAMETERS\">]" +msgstr " [B<--bootappend-live> I|I<\"PARAMÈTRES\">]" + +#. type: Plain text +#: en/lb_config.1:45 +#, fuzzy +#| msgid " [B<--bootloader> grub|grub2|syslinux]" +msgid " [B<--bootloaders> grub-legacy|grub-pc|syslinux|grub-efi]" msgstr " [B<--bootloader> grub|grub2|syslinux]" #. type: Plain text -#: en/lb_config.1:45 +#: en/lb_config.1:47 msgid " [B<--cache> true|false]" msgstr " [B<--cache> true|false]" #. type: Plain text -#: en/lb_config.1:47 +#: en/lb_config.1:49 msgid " [B<--cache-indices> true|false]" msgstr " [B<--cache-indices> true|false]" #. type: Plain text -#: en/lb_config.1:49 +#: en/lb_config.1:51 msgid " [B<--cache-packages> true|false]" msgstr " [B<--cache-packages> true|false]" #. type: Plain text -#: en/lb_config.1:51 +#: en/lb_config.1:53 msgid " [B<--cache-stages> I|I<\"STAGES\">]" msgstr " [B<--cache-stages> I|I<\"STAGES\">]" #. type: Plain text -#: en/lb_config.1:53 +#: en/lb_config.1:55 msgid " [B<--checksums> md5|sha1|sha256|none]" msgstr " [B<--checksums> md5|sha1|sha256|none]" #. type: Plain text -#: en/lb_config.1:55 +#: en/lb_config.1:57 msgid " [B<--compression> bzip2|gzip|lzip|none]" msgstr " [B<--compression> bzip2|gzip|lzip|none]" #. type: Plain text -#: en/lb_config.1:57 +#: en/lb_config.1:59 msgid " [B<--config> I]" msgstr " [B<--config> I]" #. type: Plain text -#: en/lb_config.1:59 +#: en/lb_config.1:61 msgid " [B<--build-with-chroot> true|false]" msgstr " [B<--build-with-chroot> true|false]" #. type: Plain text -#: en/lb_config.1:61 +#: en/lb_config.1:63 msgid " [B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none]" msgstr " [B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none]" #. type: Plain text -#: en/lb_config.1:63 +#: en/lb_config.1:65 msgid " [B<--clean>]" msgstr " [B<--clean>]" #. type: Plain text -#: en/lb_config.1:65 +#: en/lb_config.1:67 msgid " [-c|B<--conffile> I]" msgstr " [-c|B<--conffile> I]" #. type: Plain text -#: en/lb_config.1:67 +#: en/lb_config.1:69 msgid " [B<--debconf-frontend> dialog|editor|noninteractive|readline]" msgstr " [B<--debconf-frontend> dialog|editor|noninteractive|readline]" #. type: Plain text -#: en/lb_config.1:69 +#: en/lb_config.1:71 msgid " [B<--debconf-priority> low|medium|high|critical]" msgstr " [B<--debconf-priority> low|medium|high|critical]" #. type: Plain text -#: en/lb_config.1:71 +#: en/lb_config.1:73 msgid "" " [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]" msgstr "" " [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]" #. type: Plain text -#: en/lb_config.1:73 +#: en/lb_config.1:75 msgid " [B<--debian-installer-distribution> daily|I]" msgstr " [B<--debian-installer-distribution> daily|I]" #. type: Plain text -#: en/lb_config.1:75 +#: en/lb_config.1:77 msgid " [B<--debian-installer-preseedfile> I|I]" msgstr " [B<--debian-installer-preseedfile> I|I]" #. type: Plain text -#: en/lb_config.1:77 +#: en/lb_config.1:79 msgid " [B<--debian-installer-gui> true|false]" msgstr " [B<--debian-installer-gui> true|false]" #. type: Plain text -#: en/lb_config.1:79 +#: en/lb_config.1:81 +#, fuzzy +#| msgid " [B<--net-root-mountoptions> I]" +msgid " [B<--debootstrap-options> I]" +msgstr " [B<--net-root-mountoptions> I]" + +#. type: Plain text +#: en/lb_config.1:83 +#, fuzzy +#| msgid " [B<--mirror-bootstrap> I]" +msgid " [B<--debootstrap-script> I