Renaming volatile options refering to volatile archive to updates to match current archive namings.
This commit is contained in:
parent
017ce07eb4
commit
9228a0ca66
|
@ -434,30 +434,30 @@ Set_defaults ()
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Setting volatile mirror to fetch packages from
|
# Setting updates mirror to fetch packages from
|
||||||
case "${LB_MODE}" in
|
case "${LB_MODE}" in
|
||||||
debian|progress)
|
debian|progress)
|
||||||
LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE:-${LB_PARENT_MIRROR_CHROOT}}"
|
LB_PARENT_MIRROR_CHROOT_UPDATES="${LB_PARENT_MIRROR_CHROOT_UPDATES:-${LB_PARENT_MIRROR_CHROOT}}"
|
||||||
LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE:-${LB_MIRROR_CHROOT}}"
|
LB_MIRROR_CHROOT_UPDATES="${LB_MIRROR_CHROOT_UPDATES:-${LB_MIRROR_CHROOT}}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
ubuntu|kubuntu)
|
ubuntu|kubuntu)
|
||||||
case "${LB_ARCHITECTURES}" in
|
case "${LB_ARCHITECTURES}" in
|
||||||
amd64|i386)
|
amd64|i386)
|
||||||
LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE:-http://archive.ubuntu.com/ubuntu/}"
|
LB_MIRROR_CHROOT_UPDATES="${LB_MIRROR_CHROOT_UPDATES:-http://archive.ubuntu.com/ubuntu/}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE:-http://ports.ubuntu.com/ubuntu-ports/}"
|
LB_MIRROR_CHROOT_UPDATES="${LB_MIRROR_CHROOT_UPDATES:-http://ports.ubuntu.com/ubuntu-ports/}"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE:-${LB_PARENT_MIRROR_CHROOT}}"
|
LB_PARENT_MIRROR_CHROOT_UPDATES="${LB_PARENT_MIRROR_CHROOT_UPDATES:-${LB_PARENT_MIRROR_CHROOT}}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE:-none}"
|
LB_PARENT_MIRROR_CHROOT_UPDATES="${LB_PARENT_MIRROR_CHROOT_UPDATES:-none}"
|
||||||
LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE:-none}"
|
LB_MIRROR_CHROOT_UPDATES="${LB_MIRROR_CHROOT_UPDATES:-none}"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
@ -542,34 +542,34 @@ Set_defaults ()
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Setting volatile mirror which ends up in the image
|
# Setting updates mirror which ends up in the image
|
||||||
case "${LB_MODE}" in
|
case "${LB_MODE}" in
|
||||||
debian)
|
debian)
|
||||||
LB_MIRROR_BINARY_VOLATILE="${LB_MIRROR_BINARY_VOLATILE:-${LB_MIRROR_BINARY}}"
|
LB_MIRROR_BINARY_UPDATES="${LB_MIRROR_BINARY_UPDATES:-${LB_MIRROR_BINARY}}"
|
||||||
LB_PARENT_MIRROR_BINARY_VOLATILE="${LB_PARENT_MIRROR_BINARY_VOLATILE:-${LB_PARENT_MIRROR_BINARY}}"
|
LB_PARENT_MIRROR_BINARY_UPDATES="${LB_PARENT_MIRROR_BINARY_UPDATES:-${LB_PARENT_MIRROR_BINARY}}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
progress)
|
progress)
|
||||||
LB_PARENT_MIRROR_BINARY_VOLATILE="${LB_PARENT_MIRROR_BINARY_VOLATILE:-${LB_PARENT_MIRROR_BINARY}}"
|
LB_PARENT_MIRROR_BINARY_UPDATES="${LB_PARENT_MIRROR_BINARY_UPDATES:-${LB_PARENT_MIRROR_BINARY}}"
|
||||||
LB_MIRROR_BINARY_VOLATILE="${LB_MIRROR_BINARY_VOLATILE:-${LB_MIRROR_BINARY}}"
|
LB_MIRROR_BINARY_UPDATES="${LB_MIRROR_BINARY_UPDATES:-${LB_MIRROR_BINARY}}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
ubuntu|kubuntu)
|
ubuntu|kubuntu)
|
||||||
case "${LB_ARCHITECTURES}" in
|
case "${LB_ARCHITECTURES}" in
|
||||||
amd64|i386)
|
amd64|i386)
|
||||||
LB_MIRROR_BINARY_VOLATILE="${LB_MIRROR_BINARY_VOLATILE:-http://archive.ubuntu.com/ubuntu/}"
|
LB_MIRROR_BINARY_UPDATES="${LB_MIRROR_BINARY_UPDATES:-http://archive.ubuntu.com/ubuntu/}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
LB_MIRROR_BINARY_VOLATILE="${LB_MIRROR_BINARY_VOLATILE:-http://ports.ubuntu.com/ubuntu-ports/}"
|
LB_MIRROR_BINARY_UPDATES="${LB_MIRROR_BINARY_UPDATES:-http://ports.ubuntu.com/ubuntu-ports/}"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
LB_PARENT_MIRROR_BINARY_VOLATILE="${LB_PARENT_MIRROR_BINARY_VOLATILE:-${LB_PARENT_MIRROR_BINARY}}"
|
LB_PARENT_MIRROR_BINARY_UPDATES="${LB_PARENT_MIRROR_BINARY_UPDATES:-${LB_PARENT_MIRROR_BINARY}}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
LB_PARENT_MIRROR_BINARY_VOLATILE="${LB_PARENT_MIRROR_BINARY_VOLATILE:-none}"
|
LB_PARENT_MIRROR_BINARY_UPDATES="${LB_PARENT_MIRROR_BINARY_UPDATES:-none}"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
@ -850,14 +850,14 @@ Set_defaults ()
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Setting volatile updates option
|
# Setting updates updates option
|
||||||
case "${LB_PARENT_DISTRIBUTION}" in
|
case "${LB_PARENT_DISTRIBUTION}" in
|
||||||
wheezy|jessie|sid)
|
wheezy|jessie|sid)
|
||||||
LB_VOLATILE="${LB_VOLATILE:-false}"
|
LB_UPDATES="${LB_UPDATES:-false}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
LB_VOLATILE="${LB_VOLATILE:-true}"
|
LB_UPDATES="${LB_UPDATES:-true}"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58\-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58\-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb\fP \- wrapper for live\-build programs
|
\fBlb\fP \- wrapper for live\-build programs
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58\-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58\-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb binary\fP \- Complete the binary stage
|
\fBlb binary\fP \- Complete the binary stage
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58\-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58\-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb bootstrap\fP \- Complete the bootstrap stage
|
\fBlb bootstrap\fP \- Complete the bootstrap stage
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58\-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58\-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb build\fP \- Complete the bootstrap, chroot, binary, and source stages
|
\fBlb build\fP \- Complete the bootstrap, chroot, binary, and source stages
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58\-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58\-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb chroot\fP \- Complete the chroot stage
|
\fBlb chroot\fP \- Complete the chroot stage
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58\-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58\-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb clean\fP \- Clean build directory
|
\fBlb clean\fP \- Clean build directory
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58\-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58\-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb config\fP \- Create config directory
|
\fBlb config\fP \- Create config directory
|
||||||
|
@ -146,7 +146,7 @@
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-chroot\-security\fP \fIURL\fP]
|
[\fB\-\-parent\-mirror\-chroot\-security\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-chroot\-volatile\fP \fIURL\fP]
|
[\fB\-\-parent\-mirror\-chroot\-updates\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-chroot\-backports\fP \fIURL\fP]
|
[\fB\-\-parent\-mirror\-chroot\-backports\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
|
@ -154,7 +154,7 @@
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-binary\-security\fP \fIURL\fP]
|
[\fB\-\-parent\-mirror\-binary\-security\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-binary\-volatile\fP \fIURL\fP]
|
[\fB\-\-parent\-mirror\-binary\-updates\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-binary\-backports\fP \fIURL\fP]
|
[\fB\-\-parent\-mirror\-binary\-backports\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
|
@ -166,7 +166,7 @@
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-chroot\-security\fP \fIURL\fP]
|
[\fB\-\-mirror\-chroot\-security\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-chroot\-volatile\fP \fIURL\fP]
|
[\fB\-\-mirror\-chroot\-updates\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-chroot\-backports\fP \fIURL\fP]
|
[\fB\-\-mirror\-chroot\-backports\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
|
@ -174,7 +174,7 @@
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-binary\-security\fP \fIURL\fP]
|
[\fB\-\-mirror\-binary\-security\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-binary\-volatile\fP \fIURL\fP]
|
[\fB\-\-mirror\-binary\-updates\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-binary\-backports\fP \fIURL\fP]
|
[\fB\-\-mirror\-binary\-backports\fP \fIURL\fP]
|
||||||
.br
|
.br
|
||||||
|
@ -231,7 +231,7 @@
|
||||||
.br
|
.br
|
||||||
[\fB\-\-hdd\-size \fP\fIMB\fP]
|
[\fB\-\-hdd\-size \fP\fIMB\fP]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-volatile\fP true|false]
|
[\fB\-\-updates\fP true|false]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-backports\fP true|false]
|
[\fB\-\-backports\fP true|false]
|
||||||
.br
|
.br
|
||||||
|
@ -565,8 +565,8 @@ the value of \-\-parent\-mirror\-bootstrap.
|
||||||
sets the location of the debian security package mirror that will be used to
|
sets the location of the debian security package mirror that will be used to
|
||||||
fetch the packages in order to build the live system. By default, this
|
fetch the packages in order to build the live system. By default, this
|
||||||
points to http://security.debian.org/debian/.
|
points to http://security.debian.org/debian/.
|
||||||
.IP "\fB\-\-parent\-mirror\-chroot\-volatile\fP \fIURL\fP" 4
|
.IP "\fB\-\-parent\-mirror\-chroot\-updates\fP \fIURL\fP" 4
|
||||||
sets the location of the debian volatile package mirror that will be used to
|
sets the location of the debian updates package mirror that will be used to
|
||||||
fetch packages in order to build the live system. By default, this is set to
|
fetch packages in order to build the live system. By default, this is set to
|
||||||
the value of \-\-parent\-mirror\-chroot.
|
the value of \-\-parent\-mirror\-chroot.
|
||||||
.IP "\fB\-\-parent\-mirror\-chroot\-backports\fP \fIURL\fP" 4
|
.IP "\fB\-\-parent\-mirror\-chroot\-backports\fP \fIURL\fP" 4
|
||||||
|
@ -583,8 +583,8 @@ default, 'http://http.debian.net/debian/' is used.
|
||||||
sets the location of the debian security package mirror that should end up
|
sets the location of the debian security package mirror that should end up
|
||||||
configured in the final image. By default, 'http://security.debian.org/' is
|
configured in the final image. By default, 'http://security.debian.org/' is
|
||||||
used.
|
used.
|
||||||
.IP "\fB\-\-parent\-mirror\-binary\-volatile\fP \fIURL\fP" 4
|
.IP "\fB\-\-parent\-mirror\-binary\-updates\fP \fIURL\fP" 4
|
||||||
sets the location of the debian volatile package mirror that should end up
|
sets the location of the debian updates package mirror that should end up
|
||||||
configured in the final image. By default, the value of
|
configured in the final image. By default, the value of
|
||||||
\-\-parent\-mirror\-binary is used.
|
\-\-parent\-mirror\-binary is used.
|
||||||
.IP "\fB\-\-parent\-mirror\-binary\-backports\fP \fIURL\fP" 4
|
.IP "\fB\-\-parent\-mirror\-binary\-backports\fP \fIURL\fP" 4
|
||||||
|
@ -608,8 +608,8 @@ default, this is set to the value of \-\-mirror\-bootstrap.
|
||||||
sets the location of the debian security package mirror that will be used to
|
sets the location of the debian security package mirror that will be used to
|
||||||
fetch the packages of the derivative in order to build the live system. By
|
fetch the packages of the derivative in order to build the live system. By
|
||||||
default, this points to http://security.debian.org/debian/.
|
default, this points to http://security.debian.org/debian/.
|
||||||
.IP "\fB\-\-mirror\-chroot\-volatile\fP \fIURL\fP" 4
|
.IP "\fB\-\-mirror\-chroot\-updates\fP \fIURL\fP" 4
|
||||||
sets the location of the debian volatile package mirror that will be used to
|
sets the location of the debian updates package mirror that will be used to
|
||||||
fetch packages of the derivative in order to build the live system. By
|
fetch packages of the derivative in order to build the live system. By
|
||||||
default, this is set to the value of \-\-mirror\-chroot.
|
default, this is set to the value of \-\-mirror\-chroot.
|
||||||
.IP "\fB\-\-mirror\-chroot\-backports\fP \fIURL\fP" 4
|
.IP "\fB\-\-mirror\-chroot\-backports\fP \fIURL\fP" 4
|
||||||
|
@ -625,8 +625,8 @@ the image.
|
||||||
.IP "\fB\-\-mirror\-binary\-security\fP \fIURL\fP" 4
|
.IP "\fB\-\-mirror\-binary\-security\fP \fIURL\fP" 4
|
||||||
sets the location of the derivatives security package mirror that should end
|
sets the location of the derivatives security package mirror that should end
|
||||||
up configured in the final image.
|
up configured in the final image.
|
||||||
.IP "\fB\-\-mirror\-binary\-volatile\fP \fIURL\fP" 4
|
.IP "\fB\-\-mirror\-binary\-updates\fP \fIURL\fP" 4
|
||||||
sets the location of the derivatives volatile package mirror that should end
|
sets the location of the derivatives updates package mirror that should end
|
||||||
up configured in the final image.
|
up configured in the final image.
|
||||||
.IP "\fB\-\-mirror\-binary\-backports\fP \fIURL\fP" 4
|
.IP "\fB\-\-mirror\-binary\-backports\fP \fIURL\fP" 4
|
||||||
sets the location of the derivatives backports package mirror that should
|
sets the location of the derivatives backports package mirror that should
|
||||||
|
@ -752,8 +752,8 @@ bootloaders. By default, this is set to /usr/share/live/build/templates/.
|
||||||
defines what size the hdd image should be. Note that although the default is
|
defines what size the hdd image should be. Note that although the default is
|
||||||
set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the
|
set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the
|
||||||
files are created as sparse files.
|
files are created as sparse files.
|
||||||
.IP "\fB\-\-volatile\fP true|false" 4
|
.IP "\fB\-\-updates\fP true|false" 4
|
||||||
defines if debian volatile package archives should be included in the image
|
defines if debian updates package archives should be included in the image
|
||||||
or not.
|
or not.
|
||||||
.IP "\fB\-\-backports\fP true|false" 4
|
.IP "\fB\-\-backports\fP true|false" 4
|
||||||
defines if debian backports package archives should be included in the image
|
defines if debian backports package archives should be included in the image
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58\-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58\-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb source\fP \- Complete the source stage
|
\fBlb source\fP \- Complete the source stage
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58\-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58\-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb testroot\fP \- Ensure that a system is built as root
|
\fBlb testroot\fP \- Ensure that a system is built as root
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 7 2012\-08\-27 3.0~a58\-1 "Debian Live Project"
|
.TH LIVE\-BUILD 7 2012\-09\-20 3.0~a58\-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- the Debian Live tool suite
|
\fBlive\-build\fP \- the Debian Live tool suite
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb\fR \- wrapper for live\-build programs
|
\fBlb\fR \- wrapper for live\-build programs
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb binary\fR \- Complete the binary stage
|
\fBlb binary\fR \- Complete the binary stage
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb bootstrap\fR \- Complete the bootstrap stage
|
\fBlb bootstrap\fR \- Complete the bootstrap stage
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb build\fR \- Complete the bootstrap, chroot, binary, and source stages
|
\fBlb build\fR \- Complete the bootstrap, chroot, binary, and source stages
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb chroot\fR \- Complete the chroot stage
|
\fBlb chroot\fR \- Complete the chroot stage
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb clean\fR \- Clean build directory
|
\fBlb clean\fR \- Clean build directory
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb config\fR \- Create config directory
|
\fBlb config\fR \- Create config directory
|
||||||
|
@ -141,7 +141,7 @@
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-chroot\-security\fR \fIURL\fR]
|
[\fB\-\-parent\-mirror\-chroot\-security\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-chroot\-volatile\fR \fIURL\fR]
|
[\fB\-\-parent\-mirror\-chroot\-updates\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-chroot\-backports\fR \fIURL\fR]
|
[\fB\-\-parent\-mirror\-chroot\-backports\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
|
@ -149,7 +149,7 @@
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-binary\-security\fR \fIURL\fR]
|
[\fB\-\-parent\-mirror\-binary\-security\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-binary\-volatile\fR \fIURL\fR]
|
[\fB\-\-parent\-mirror\-binary\-updates\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-parent\-mirror\-binary\-backports\fR \fIURL\fR]
|
[\fB\-\-parent\-mirror\-binary\-backports\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
|
@ -161,7 +161,7 @@
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-chroot\-security\fR \fIURL\fR]
|
[\fB\-\-mirror\-chroot\-security\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-chroot\-volatile\fR \fIURL\fR]
|
[\fB\-\-mirror\-chroot\-updates\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-chroot\-backports\fR \fIURL\fR]
|
[\fB\-\-mirror\-chroot\-backports\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
|
@ -169,7 +169,7 @@
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-binary\-security\fR \fIURL\fR]
|
[\fB\-\-mirror\-binary\-security\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-binary\-volatile\fR \fIURL\fR]
|
[\fB\-\-mirror\-binary\-updates\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-mirror\-binary\-backports\fR \fIURL\fR]
|
[\fB\-\-mirror\-binary\-backports\fR \fIURL\fR]
|
||||||
.br
|
.br
|
||||||
|
@ -225,7 +225,7 @@
|
||||||
.br
|
.br
|
||||||
[\fB\-\-hdd\-size \fIMB\fR]
|
[\fB\-\-hdd\-size \fIMB\fR]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-volatile\fR true|false]
|
[\fB\-\-updates\fR true|false]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-backports\fR true|false]
|
[\fB\-\-backports\fR true|false]
|
||||||
.br
|
.br
|
||||||
|
@ -375,16 +375,16 @@ sets the location of the debian package mirror that should be used to bootstrap
|
||||||
sets the location of the debian package mirror that will be used to fetch the packages in order to build the live system. By default, this is set to the value of \-\-parent\-mirror\-bootstrap.
|
sets the location of the debian package mirror that will be used to fetch the packages in order to build the live system. By default, this is set to the value of \-\-parent\-mirror\-bootstrap.
|
||||||
.IP "\fB\-\-parent\-mirror\-chroot\-security\fR \fIURL\fR" 4
|
.IP "\fB\-\-parent\-mirror\-chroot\-security\fR \fIURL\fR" 4
|
||||||
sets the location of the debian security package mirror that will be used to fetch the packages in order to build the live system. By default, this points to http://security.debian.org/debian/.
|
sets the location of the debian security package mirror that will be used to fetch the packages in order to build the live system. By default, this points to http://security.debian.org/debian/.
|
||||||
.IP "\fB\-\-parent\-mirror\-chroot\-volatile\fR \fIURL\fR" 4
|
.IP "\fB\-\-parent\-mirror\-chroot\-updates\fR \fIURL\fR" 4
|
||||||
sets the location of the debian volatile package mirror that will be used to fetch packages in order to build the live system. By default, this is set to the value of \-\-parent\-mirror\-chroot.
|
sets the location of the debian updates package mirror that will be used to fetch packages in order to build the live system. By default, this is set to the value of \-\-parent\-mirror\-chroot.
|
||||||
.IP "\fB\-\-parent\-mirror\-chroot\-backports\fR \fIURL\fR" 4
|
.IP "\fB\-\-parent\-mirror\-chroot\-backports\fR \fIURL\fR" 4
|
||||||
sets the location of the debian backports package mirror that will be used to fetch packages in order to build the live system. By default, this points to http://backports.debian.org/debian-backports/.
|
sets the location of the debian backports package mirror that will be used to fetch packages in order to build the live system. By default, this points to http://backports.debian.org/debian-backports/.
|
||||||
.IP "\fB\-\-parent\-mirror\-binary\fR \fIURL\fR" 4
|
.IP "\fB\-\-parent\-mirror\-binary\fR \fIURL\fR" 4
|
||||||
sets the location of the debian package mirror that should end up configured in the final image and which is the one a user would see and use. This has not necessarily to be the same that is used to build the image, e.g. if you use a local mirror but want to have an official mirror in the image. By default, 'http://http.debian.net/debian/' is used.
|
sets the location of the debian package mirror that should end up configured in the final image and which is the one a user would see and use. This has not necessarily to be the same that is used to build the image, e.g. if you use a local mirror but want to have an official mirror in the image. By default, 'http://http.debian.net/debian/' is used.
|
||||||
.IP "\fB\-\-parent\-mirror\-binary\-security\fR \fIURL\fR" 4
|
.IP "\fB\-\-parent\-mirror\-binary\-security\fR \fIURL\fR" 4
|
||||||
sets the location of the debian security package mirror that should end up configured in the final image. By default, 'http://security.debian.org/' is used.
|
sets the location of the debian security package mirror that should end up configured in the final image. By default, 'http://security.debian.org/' is used.
|
||||||
.IP "\fB\-\-parent\-mirror\-binary\-volatile\fR \fIURL\fR" 4
|
.IP "\fB\-\-parent\-mirror\-binary\-updates\fR \fIURL\fR" 4
|
||||||
sets the location of the debian volatile package mirror that should end up configured in the final image. By default, the value of \-\-parent\-mirror\-binary is used.
|
sets the location of the debian updates package mirror that should end up configured in the final image. By default, the value of \-\-parent\-mirror\-binary is used.
|
||||||
.IP "\fB\-\-parent\-mirror\-binary\-backports\fR \fIURL\fR" 4
|
.IP "\fB\-\-parent\-mirror\-binary\-backports\fR \fIURL\fR" 4
|
||||||
sets the location of the debian backports package mirror that should end up configured in the final image. By default, 'http://backports.debian.org/debian-backports/' is used.
|
sets the location of the debian backports package mirror that should end up configured in the final image. By default, 'http://backports.debian.org/debian-backports/' is used.
|
||||||
.IP "\fB\-\-parent\-mirror\-debian\-installer\fR \fIURL\fR" 4
|
.IP "\fB\-\-parent\-mirror\-debian\-installer\fR \fIURL\fR" 4
|
||||||
|
@ -395,16 +395,16 @@ sets the location of the debian package mirror that should be used to bootstrap
|
||||||
sets the location of the debian package mirror that will be used to fetch the packages of the derivative in order to build the live system. By default, this is set to the value of \-\-mirror\-bootstrap.
|
sets the location of the debian package mirror that will be used to fetch the packages of the derivative in order to build the live system. By default, this is set to the value of \-\-mirror\-bootstrap.
|
||||||
.IP "\fB\-\-mirror\-chroot\-security\fR \fIURL\fR" 4
|
.IP "\fB\-\-mirror\-chroot\-security\fR \fIURL\fR" 4
|
||||||
sets the location of the debian security package mirror that will be used to fetch the packages of the derivative in order to build the live system. By default, this points to http://security.debian.org/debian/.
|
sets the location of the debian security package mirror that will be used to fetch the packages of the derivative in order to build the live system. By default, this points to http://security.debian.org/debian/.
|
||||||
.IP "\fB\-\-mirror\-chroot\-volatile\fR \fIURL\fR" 4
|
.IP "\fB\-\-mirror\-chroot\-updates\fR \fIURL\fR" 4
|
||||||
sets the location of the debian volatile package mirror that will be used to fetch packages of the derivative in order to build the live system. By default, this is set to the value of \-\-mirror\-chroot.
|
sets the location of the debian updates package mirror that will be used to fetch packages of the derivative in order to build the live system. By default, this is set to the value of \-\-mirror\-chroot.
|
||||||
.IP "\fB\-\-mirror\-chroot\-backports\fR \fIURL\fR" 4
|
.IP "\fB\-\-mirror\-chroot\-backports\fR \fIURL\fR" 4
|
||||||
sets the location of the debian backports package mirror that will be used to fetch packages of the derivative in order to build the live system. By default, this points to http://backports.debian.org/debian-backports/.
|
sets the location of the debian backports package mirror that will be used to fetch packages of the derivative in order to build the live system. By default, this points to http://backports.debian.org/debian-backports/.
|
||||||
.IP "\fB\-\-mirror\-binary\fR \fIURL\fR" 4
|
.IP "\fB\-\-mirror\-binary\fR \fIURL\fR" 4
|
||||||
sets the location of the derivative package mirror that should end up configured in the final image and which is the one a user would see and use. This has not necessarily to be the same that is used to build the image, e.g. if you use a local mirror but want to have an official mirror in the image.
|
sets the location of the derivative package mirror that should end up configured in the final image and which is the one a user would see and use. This has not necessarily to be the same that is used to build the image, e.g. if you use a local mirror but want to have an official mirror in the image.
|
||||||
.IP "\fB\-\-mirror\-binary\-security\fR \fIURL\fR" 4
|
.IP "\fB\-\-mirror\-binary\-security\fR \fIURL\fR" 4
|
||||||
sets the location of the derivatives security package mirror that should end up configured in the final image.
|
sets the location of the derivatives security package mirror that should end up configured in the final image.
|
||||||
.IP "\fB\-\-mirror\-binary\-volatile\fR \fIURL\fR" 4
|
.IP "\fB\-\-mirror\-binary\-updates\fR \fIURL\fR" 4
|
||||||
sets the location of the derivatives volatile package mirror that should end up configured in the final image.
|
sets the location of the derivatives updates package mirror that should end up configured in the final image.
|
||||||
.IP "\fB\-\-mirror\-binary\-backports\fR \fIURL\fR" 4
|
.IP "\fB\-\-mirror\-binary\-backports\fR \fIURL\fR" 4
|
||||||
sets the location of the derivatives backports package mirror that should end up configured in the final image.
|
sets the location of the derivatives backports package mirror that should end up configured in the final image.
|
||||||
.IP "\fB\-\-mirror\-debian\-installer\fR \fIURL\fR" 4
|
.IP "\fB\-\-mirror\-debian\-installer\fR \fIURL\fR" 4
|
||||||
|
@ -474,8 +474,8 @@ selects which program is used to install tasks. By default, this is set to tasks
|
||||||
sets the path to the templates that live\-build is going to use, e.g. for bootloaders. By default, this is set to /usr/share/live/build/templates/.
|
sets the path to the templates that live\-build is going to use, e.g. for bootloaders. By default, this is set to /usr/share/live/build/templates/.
|
||||||
.IP "\fB\-\-hdd\-size\fR MB" 4
|
.IP "\fB\-\-hdd\-size\fR MB" 4
|
||||||
defines what size the hdd image should be. Note that although the default is set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the files are created as sparse files.
|
defines what size the hdd image should be. Note that although the default is set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the files are created as sparse files.
|
||||||
.IP "\fB\-\-volatile\fR true|false" 4
|
.IP "\fB\-\-updates\fR true|false" 4
|
||||||
defines if debian volatile package archives should be included in the image or not.
|
defines if debian updates package archives should be included in the image or not.
|
||||||
.IP "\fB\-\-backports\fR true|false" 4
|
.IP "\fB\-\-backports\fR true|false" 4
|
||||||
defines if debian backports package archives should be included in the image or not.
|
defines if debian backports package archives should be included in the image or not.
|
||||||
.IP "\fB\-\-exposed\-root\fR true|false" 4
|
.IP "\fB\-\-exposed\-root\fR true|false" 4
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb source\fR \- Complete the source stage
|
\fBlb source\fR \- Complete the source stage
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-BUILD 1 2012\-08\-27 3.0~a58-1 "Debian Live Project"
|
.TH LIVE\-BUILD 1 2012\-09\-20 3.0~a58-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlb testroot\fR \- Ensure that a system is built as root
|
\fBlb testroot\fR \- Ensure that a system is built as root
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-BUILD 7 2012\-08\-27 3.0~a58-1 "Debian Live Project"
|
.TH LIVE\-BUILD 7 2012\-09\-20 3.0~a58-1 "Debian Live Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- the Debian Live tool suite
|
\fBlive\-build\fR \- the Debian Live tool suite
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -513,7 +513,7 @@ msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:145
|
#: en/lb_config.1:145
|
||||||
msgid " [B<--parent-mirror-chroot-volatile> I<URL>]"
|
msgid " [B<--parent-mirror-chroot-updates> I<URL>]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
|
@ -533,7 +533,7 @@ msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:153
|
#: en/lb_config.1:153
|
||||||
msgid " [B<--parent-mirror-binary-volatile> I<URL>]"
|
msgid " [B<--parent-mirror-binary-updates> I<URL>]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
|
@ -563,7 +563,7 @@ msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:165
|
#: en/lb_config.1:165
|
||||||
msgid " [B<--mirror-chroot-volatile> I<URL>]"
|
msgid " [B<--mirror-chroot-updates> I<URL>]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
|
@ -583,7 +583,7 @@ msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:173
|
#: en/lb_config.1:173
|
||||||
msgid " [B<--mirror-binary-volatile> I<URL>]"
|
msgid " [B<--mirror-binary-updates> I<URL>]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
|
@ -725,7 +725,7 @@ msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:229
|
#: en/lb_config.1:229
|
||||||
msgid " [B<--volatile> true|false]"
|
msgid " [B<--updates> true|false]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
|
@ -1711,13 +1711,13 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb_config.1:378
|
#: en/lb_config.1:378
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--parent-mirror-chroot-volatile> I<URL>"
|
msgid "B<--parent-mirror-chroot-updates> I<URL>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:380
|
#: en/lb_config.1:380
|
||||||
msgid ""
|
msgid ""
|
||||||
"sets the location of the debian volatile package mirror that will be used to "
|
"sets the location of the debian updates package mirror that will be used to "
|
||||||
"fetch packages in order to build the live system. By default, this is set to "
|
"fetch packages in order to build the live system. By default, this is set to "
|
||||||
"the value of --parent-mirror-chroot."
|
"the value of --parent-mirror-chroot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1769,13 +1769,13 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb_config.1:386
|
#: en/lb_config.1:386
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--parent-mirror-binary-volatile> I<URL>"
|
msgid "B<--parent-mirror-binary-updates> I<URL>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:388
|
#: en/lb_config.1:388
|
||||||
msgid ""
|
msgid ""
|
||||||
"sets the location of the debian volatile package mirror that should end up "
|
"sets the location of the debian updates package mirror that should end up "
|
||||||
"configured in the final image. By default, the value of --parent-mirror-"
|
"configured in the final image. By default, the value of --parent-mirror-"
|
||||||
"binary is used."
|
"binary is used."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1853,13 +1853,13 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb_config.1:398
|
#: en/lb_config.1:398
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--mirror-chroot-volatile> I<URL>"
|
msgid "B<--mirror-chroot-updates> I<URL>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:400
|
#: en/lb_config.1:400
|
||||||
msgid ""
|
msgid ""
|
||||||
"sets the location of the debian volatile package mirror that will be used to "
|
"sets the location of the debian updates package mirror that will be used to "
|
||||||
"fetch packages of the derivative in order to build the live system. By "
|
"fetch packages of the derivative in order to build the live system. By "
|
||||||
"default, this is set to the value of --mirror-chroot."
|
"default, this is set to the value of --mirror-chroot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1910,13 +1910,13 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb_config.1:406
|
#: en/lb_config.1:406
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--mirror-binary-volatile> I<URL>"
|
msgid "B<--mirror-binary-updates> I<URL>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:408
|
#: en/lb_config.1:408
|
||||||
msgid ""
|
msgid ""
|
||||||
"sets the location of the derivatives volatile package mirror that should end "
|
"sets the location of the derivatives updates package mirror that should end "
|
||||||
"up configured in the final image."
|
"up configured in the final image."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2362,13 +2362,13 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb_config.1:477
|
#: en/lb_config.1:477
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--volatile> true|false"
|
msgid "B<--updates> true|false"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:479
|
#: en/lb_config.1:479
|
||||||
msgid ""
|
msgid ""
|
||||||
"defines if debian volatile package archives should be included in the image "
|
"defines if debian updates package archives should be included in the image "
|
||||||
"or not."
|
"or not."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
"PO-Revision-Date: 2012-08-02 18:55+0300\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -513,7 +513,7 @@ msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:145
|
#: en/lb_config.1:145
|
||||||
msgid " [B<--parent-mirror-chroot-volatile> I<URL>]"
|
msgid " [B<--parent-mirror-chroot-updates> I<URL>]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
|
@ -533,7 +533,7 @@ msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:153
|
#: en/lb_config.1:153
|
||||||
msgid " [B<--parent-mirror-binary-volatile> I<URL>]"
|
msgid " [B<--parent-mirror-binary-updates> I<URL>]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
|
@ -563,7 +563,7 @@ msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:165
|
#: en/lb_config.1:165
|
||||||
msgid " [B<--mirror-chroot-volatile> I<URL>]"
|
msgid " [B<--mirror-chroot-updates> I<URL>]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
|
@ -583,7 +583,7 @@ msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:173
|
#: en/lb_config.1:173
|
||||||
msgid " [B<--mirror-binary-volatile> I<URL>]"
|
msgid " [B<--mirror-binary-updates> I<URL>]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
|
@ -725,7 +725,7 @@ msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:229
|
#: en/lb_config.1:229
|
||||||
msgid " [B<--volatile> true|false]"
|
msgid " [B<--updates> true|false]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
|
@ -1711,13 +1711,13 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb_config.1:378
|
#: en/lb_config.1:378
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--parent-mirror-chroot-volatile> I<URL>"
|
msgid "B<--parent-mirror-chroot-updates> I<URL>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:380
|
#: en/lb_config.1:380
|
||||||
msgid ""
|
msgid ""
|
||||||
"sets the location of the debian volatile package mirror that will be used to "
|
"sets the location of the debian updates package mirror that will be used to "
|
||||||
"fetch packages in order to build the live system. By default, this is set to "
|
"fetch packages in order to build the live system. By default, this is set to "
|
||||||
"the value of --parent-mirror-chroot."
|
"the value of --parent-mirror-chroot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1769,13 +1769,13 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb_config.1:386
|
#: en/lb_config.1:386
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--parent-mirror-binary-volatile> I<URL>"
|
msgid "B<--parent-mirror-binary-updates> I<URL>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:388
|
#: en/lb_config.1:388
|
||||||
msgid ""
|
msgid ""
|
||||||
"sets the location of the debian volatile package mirror that should end up "
|
"sets the location of the debian updates package mirror that should end up "
|
||||||
"configured in the final image. By default, the value of --parent-mirror-"
|
"configured in the final image. By default, the value of --parent-mirror-"
|
||||||
"binary is used."
|
"binary is used."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1853,13 +1853,13 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb_config.1:398
|
#: en/lb_config.1:398
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--mirror-chroot-volatile> I<URL>"
|
msgid "B<--mirror-chroot-updates> I<URL>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:400
|
#: en/lb_config.1:400
|
||||||
msgid ""
|
msgid ""
|
||||||
"sets the location of the debian volatile package mirror that will be used to "
|
"sets the location of the debian updates package mirror that will be used to "
|
||||||
"fetch packages of the derivative in order to build the live system. By "
|
"fetch packages of the derivative in order to build the live system. By "
|
||||||
"default, this is set to the value of --mirror-chroot."
|
"default, this is set to the value of --mirror-chroot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1910,13 +1910,13 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb_config.1:406
|
#: en/lb_config.1:406
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--mirror-binary-volatile> I<URL>"
|
msgid "B<--mirror-binary-updates> I<URL>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:408
|
#: en/lb_config.1:408
|
||||||
msgid ""
|
msgid ""
|
||||||
"sets the location of the derivatives volatile package mirror that should end "
|
"sets the location of the derivatives updates package mirror that should end "
|
||||||
"up configured in the final image."
|
"up configured in the final image."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2362,13 +2362,13 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb_config.1:477
|
#: en/lb_config.1:477
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--volatile> true|false"
|
msgid "B<--updates> true|false"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb_config.1:479
|
#: en/lb_config.1:479
|
||||||
msgid ""
|
msgid ""
|
||||||
"defines if debian volatile package archives should be included in the image "
|
"defines if debian updates package archives should be included in the image "
|
||||||
"or not."
|
"or not."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build VERSION\n"
|
"Project-Id-Version: live-build VERSION\n"
|
||||||
"POT-Creation-Date: 2012-08-27 16:32+0300\n"
|
"POT-Creation-Date: 2012-09-20 16:51+0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -29,7 +29,7 @@ msgstr ""
|
||||||
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
#: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
|
||||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2012-08-27"
|
msgid "2012-09-20"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
|
|
@ -160,7 +160,7 @@ case "${1}" in
|
||||||
_ENABLE_DISTRIBUTIONS="${_ENABLE_DISTRIBUTIONS} ${_DISTRIBUTION}-security"
|
_ENABLE_DISTRIBUTIONS="${_ENABLE_DISTRIBUTIONS} ${_DISTRIBUTION}-security"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${LB_VOLATILE}" = "true" ]
|
if [ "${LB_UPDATES}" = "true" ]
|
||||||
then
|
then
|
||||||
_ENABLE_DISTRIBUTIONS="${_ENABLE_DISTRIBUTIONS} ${_DISTRIBUTION}-updates"
|
_ENABLE_DISTRIBUTIONS="${_ENABLE_DISTRIBUTIONS} ${_DISTRIBUTION}-updates"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -142,22 +142,22 @@ EOF
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${LB_VOLATILE}" = "true" ]
|
if [ "${LB_UPDATES}" = "true" ]
|
||||||
then
|
then
|
||||||
echo "deb ${LB_PARENT_MIRROR_CHROOT_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
|
echo "deb ${LB_PARENT_MIRROR_CHROOT_UPDATES} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
|
||||||
|
|
||||||
if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
|
if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
|
||||||
then
|
then
|
||||||
echo "deb-src ${LB_PARENT_MIRROR_CHROOT_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
|
echo "deb-src ${LB_PARENT_MIRROR_CHROOT_UPDATES} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${LB_DERIVATIVE}" = "true" ] && [ "${LB_MIRROR_CHROOT_VOLATILE}" != "none" ]
|
if [ "${LB_DERIVATIVE}" = "true" ] && [ "${LB_MIRROR_CHROOT_UPDATES}" != "none" ]
|
||||||
then
|
then
|
||||||
echo "deb ${LB_MIRROR_CHROOT_VOLATILE} ${_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list.d/${LB_MODE}.list
|
echo "deb ${LB_MIRROR_CHROOT_UPDATES} ${_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list.d/${LB_MODE}.list
|
||||||
|
|
||||||
if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
|
if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
|
||||||
then
|
then
|
||||||
echo "deb-src ${LB_MIRROR_CHROOT_VOLATILE} ${_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list.d/${LB_MODE}.list
|
echo "deb-src ${LB_MIRROR_CHROOT_UPDATES} ${_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list.d/${LB_MODE}.list
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -710,22 +710,22 @@ EOF
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${LB_VOLATILE}" = "true" ]
|
if [ "${LB_UPDATES}" = "true" ]
|
||||||
then
|
then
|
||||||
echo "deb ${LB_PARENT_MIRROR_BINARY_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
|
echo "deb ${LB_PARENT_MIRROR_BINARY_UPDATES} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
|
||||||
|
|
||||||
if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
|
if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
|
||||||
then
|
then
|
||||||
echo "deb-src ${LB_PARENT_MIRROR_BINARY_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
|
echo "deb-src ${LB_PARENT_MIRROR_BINARY_UPDATES} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${LB_DERIVATIVE}" = "true" ] && [ "${LB_MIRROR_BINARY_VOLATILE}" != "none" ]
|
if [ "${LB_DERIVATIVE}" = "true" ] && [ "${LB_MIRROR_BINARY_UPDATES}" != "none" ]
|
||||||
then
|
then
|
||||||
echo "deb ${LB_MIRROR_BINARY_VOLATILE} ${_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list.d/${LB_MODE}.list
|
echo "deb ${LB_MIRROR_BINARY_UPDATES} ${_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list.d/${LB_MODE}.list
|
||||||
|
|
||||||
if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
|
if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
|
||||||
then
|
then
|
||||||
echo "deb-src ${LB_MIRROR_BINARY_VOLATILE} ${_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list.d/${LB_MODE}.list
|
echo "deb-src ${LB_MIRROR_BINARY_UPDATES} ${_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list.d/${LB_MODE}.list
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -84,21 +84,21 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
|
||||||
\t [-m|--parent-mirror-bootstrap URL]\n\
|
\t [-m|--parent-mirror-bootstrap URL]\n\
|
||||||
\t [--parent-mirror-chroot URL]\n\
|
\t [--parent-mirror-chroot URL]\n\
|
||||||
\t [--parent-mirror-chroot-security URL]\n\
|
\t [--parent-mirror-chroot-security URL]\n\
|
||||||
\t [--parent-mirror-chroot-volatile URL]\n\
|
\t [--parent-mirror-chroot-updates URL]\n\
|
||||||
\t [--parent-mirror-chroot-backports URL]\n\
|
\t [--parent-mirror-chroot-backports URL]\n\
|
||||||
\t [--parent-mirror-binary URL]\n\
|
\t [--parent-mirror-binary URL]\n\
|
||||||
\t [--parent-mirror-binary-security URL]\n\
|
\t [--parent-mirror-binary-security URL]\n\
|
||||||
\t [--parent-mirror-binary-volatile URL]\n\
|
\t [--parent-mirror-binary-updates URL]\n\
|
||||||
\t [--parent-mirror-binary-backports URL]\n\
|
\t [--parent-mirror-binary-backports URL]\n\
|
||||||
\t [--parent-mirror-debian-installer URL]\n\
|
\t [--parent-mirror-debian-installer URL]\n\
|
||||||
\t [--mirror-bootstrap URL]\n\
|
\t [--mirror-bootstrap URL]\n\
|
||||||
\t [--mirror-chroot URL]\n\
|
\t [--mirror-chroot URL]\n\
|
||||||
\t [--mirror-chroot-security URL]\n\
|
\t [--mirror-chroot-security URL]\n\
|
||||||
\t [--mirror-chroot-volatile URL]\n\
|
\t [--mirror-chroot-updates URL]\n\
|
||||||
\t [--mirror-chroot-backports URL]\n\
|
\t [--mirror-chroot-backports URL]\n\
|
||||||
\t [--mirror-binary URL]\n\
|
\t [--mirror-binary URL]\n\
|
||||||
\t [--mirror-binary-security URL]\n\
|
\t [--mirror-binary-security URL]\n\
|
||||||
\t [--mirror-binary-volatile URL]\n\
|
\t [--mirror-binary-updates URL]\n\
|
||||||
\t [--mirror-binary-backports URL]\n\
|
\t [--mirror-binary-backports URL]\n\
|
||||||
\t [--mirror-debian-installer URL]\n\
|
\t [--mirror-debian-installer URL]\n\
|
||||||
\t [--mode debian|emdebian|ubuntu|kubuntu]\n\
|
\t [--mode debian|emdebian|ubuntu|kubuntu]\n\
|
||||||
|
@ -128,7 +128,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
|
||||||
\t [--syslinux-theme THEME_SUFFIX]\n\
|
\t [--syslinux-theme THEME_SUFFIX]\n\
|
||||||
\t [--tasksel apt|aptitude|tasksel]\n\
|
\t [--tasksel apt|aptitude|tasksel]\n\
|
||||||
\t [--templates PATH]\n\
|
\t [--templates PATH]\n\
|
||||||
\t [--volatile true|false]\n\
|
\t [--updates true|false]\n\
|
||||||
\t [--backports true|false]\n\
|
\t [--backports true|false]\n\
|
||||||
\t [--exposed-root true|false]\n\
|
\t [--exposed-root true|false]\n\
|
||||||
\t [--verbose]\n\
|
\t [--verbose]\n\
|
||||||
|
@ -145,13 +145,13 @@ Local_arguments ()
|
||||||
cache-stages:,debconf-frontend:,debconf-nowarnings:,debconf-priority:,dump,
|
cache-stages:,debconf-frontend:,debconf-nowarnings:,debconf-priority:,dump,
|
||||||
initramfs:,initramfs-compression:,initsystem:,fdisk:,losetup:,mode:,system:,root-command:,use-fakeroot:,tasksel:,
|
initramfs:,initramfs-compression:,initsystem:,fdisk:,losetup:,mode:,system:,root-command:,use-fakeroot:,tasksel:,
|
||||||
templates:,architectures:,clean,
|
templates:,architectures:,clean,
|
||||||
distribution:,parent-distribution:,parent-debian-installer-distribution:,parent-mirror-bootstrap:,parent-mirror-chroot:,parent-mirror-chroot-security:,parent-mirror-chroot-volatile:,parent-mirror-chroot-backports:,parent-mirror-binary:,
|
distribution:,parent-distribution:,parent-debian-installer-distribution:,parent-mirror-bootstrap:,parent-mirror-chroot:,parent-mirror-chroot-security:,parent-mirror-chroot-updates:,parent-mirror-chroot-backports:,parent-mirror-binary:,
|
||||||
parent-mirror-binary-security:,parent-mirror-binary-volatile:,parent-mirror-binary-backports:,parent-mirror-debian-installer:,
|
parent-mirror-binary-security:,parent-mirror-binary-updates:,parent-mirror-binary-backports:,parent-mirror-debian-installer:,
|
||||||
mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-chroot-volatile:,mirror-chroot-backports:,mirror-binary:,
|
mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-chroot-updates:,mirror-chroot-backports:,mirror-binary:,
|
||||||
mirror-binary-security:,mirror-binary-volatile:,mirror-binary-backports:,mirror-debian-installer:,
|
mirror-binary-security:,mirror-binary-updates:,mirror-binary-backports:,mirror-debian-installer:,
|
||||||
archives:,archive-areas:,parent-archive-areas:,chroot-filesystem:,exposed-root:,
|
archives:,archive-areas:,parent-archive-areas:,chroot-filesystem:,exposed-root:,
|
||||||
gzip-options:,hooks:,interactive:,keyring-packages:,linux-flavours:,linux-packages:,
|
gzip-options:,hooks:,interactive:,keyring-packages:,linux-flavours:,linux-packages:,
|
||||||
security:,volatile:,backports:,binary-filesystem:,binary-images:,
|
security:,updates:,backports:,binary-filesystem:,binary-images:,
|
||||||
apt-indices:,bootappend-install:,bootappend-live:,bootappend-failsafe:,bootloader:,checksums:,compression:,config:,zsync:,build-with-chroot:,
|
apt-indices:,bootappend-install:,bootappend-live:,bootappend-failsafe:,bootloader:,checksums:,compression:,config:,zsync:,build-with-chroot:,
|
||||||
debian-installer:,debian-installer-distribution:,debian-installer-preseedfile:,debian-installer-gui:,
|
debian-installer:,debian-installer-distribution:,debian-installer-preseedfile:,debian-installer-gui:,
|
||||||
grub-splash:,isohybrid-options:,hdd-label:,hdd-size:,iso-application:,iso-preparer:,iso-publisher:,
|
grub-splash:,isohybrid-options:,hdd-label:,hdd-size:,iso-application:,iso-preparer:,iso-publisher:,
|
||||||
|
@ -404,8 +404,8 @@ Local_arguments ()
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
--parent-mirror-chroot-volatile)
|
--parent-mirror-chroot-updates)
|
||||||
LB_PARENT_MIRROR_CHROOT_VOLATILE="${2}"
|
LB_PARENT_MIRROR_CHROOT_UPDATES="${2}"
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
@ -424,8 +424,8 @@ Local_arguments ()
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
--parent-mirror-binary-volatile)
|
--parent-mirror-binary-updates)
|
||||||
LB_PARENT_MIRROR_BINARY_VOLATILE="${2}"
|
LB_PARENT_MIRROR_BINARY_UPDATES="${2}"
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
@ -454,8 +454,8 @@ Local_arguments ()
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
--mirror-chroot-volatile)
|
--mirror-chroot-updates)
|
||||||
LB_MIRROR_CHROOT_VOLATILE="${2}"
|
LB_MIRROR_CHROOT_UPDATES="${2}"
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
@ -474,8 +474,8 @@ Local_arguments ()
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
--mirror-binary-volatile)
|
--mirror-binary-updates)
|
||||||
LB_MIRROR_BINARY_VOLATILE="${2}"
|
LB_MIRROR_BINARY_UPDATES="${2}"
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
@ -550,8 +550,8 @@ Local_arguments ()
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
--volatile)
|
--updates)
|
||||||
LB_VOLATILE="${2}"
|
LB_UPDATES="${2}"
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
@ -1123,9 +1123,9 @@ LB_PARENT_MIRROR_CHROOT="${LB_PARENT_MIRROR_CHROOT}"
|
||||||
# (Default: ${LB_PARENT_MIRROR_CHROOT_SECURITY})
|
# (Default: ${LB_PARENT_MIRROR_CHROOT_SECURITY})
|
||||||
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY}"
|
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY}"
|
||||||
|
|
||||||
# \$LB_PARENT_MIRROR_CHROOT_VOLATILE: set volatile parent mirror to fetch packages from
|
# \$LB_PARENT_MIRROR_CHROOT_UPDATES: set updates parent mirror to fetch packages from
|
||||||
# (Default: ${LB_PARENT_MIRROR_CHROOT_VOLATILE})
|
# (Default: ${LB_PARENT_MIRROR_CHROOT_UPDATES})
|
||||||
LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE}"
|
LB_PARENT_MIRROR_CHROOT_UPDATES="${LB_PARENT_MIRROR_CHROOT_UPDATES}"
|
||||||
|
|
||||||
# \$LB_PARENT_MIRROR_CHROOT_BACKPORTS: set backports parent mirror to fetch packages from
|
# \$LB_PARENT_MIRROR_CHROOT_BACKPORTS: set backports parent mirror to fetch packages from
|
||||||
# (Default: ${LB_PARENT_MIRROR_CHROOT_BACKPORTS})
|
# (Default: ${LB_PARENT_MIRROR_CHROOT_BACKPORTS})
|
||||||
|
@ -1139,9 +1139,9 @@ LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY}"
|
||||||
# (Default: ${LB_PARENT_MIRROR_BINARY_SECURITY})
|
# (Default: ${LB_PARENT_MIRROR_BINARY_SECURITY})
|
||||||
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY}"
|
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY}"
|
||||||
|
|
||||||
# \$LB_PARENT_MIRROR_BINARY_VOLATILE: set volatile parent mirror which ends up in the image
|
# \$LB_PARENT_MIRROR_BINARY_UPDATES: set updates parent mirror which ends up in the image
|
||||||
# (Default: ${LB_PARENT_MIRROR_BINARY_VOLATILE})
|
# (Default: ${LB_PARENT_MIRROR_BINARY_UPDATES})
|
||||||
LB_PARENT_MIRROR_BINARY_VOLATILE="${LB_PARENT_MIRROR_BINARY_VOLATILE}"
|
LB_PARENT_MIRROR_BINARY_UPDATES="${LB_PARENT_MIRROR_BINARY_UPDATES}"
|
||||||
|
|
||||||
# \$LB_PARENT_MIRROR_BINARY_BACKPORTS: set backports parent mirror which ends up in the image
|
# \$LB_PARENT_MIRROR_BINARY_BACKPORTS: set backports parent mirror which ends up in the image
|
||||||
# (Default: ${LB_PARENT_MIRROR_BINARY_BACKPORTS})
|
# (Default: ${LB_PARENT_MIRROR_BINARY_BACKPORTS})
|
||||||
|
@ -1163,9 +1163,9 @@ LB_MIRROR_CHROOT="${LB_MIRROR_CHROOT}"
|
||||||
# (Default: ${LB_MIRROR_CHROOT_SECURITY})
|
# (Default: ${LB_MIRROR_CHROOT_SECURITY})
|
||||||
LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY}"
|
LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY}"
|
||||||
|
|
||||||
# \$LB_MIRROR_CHROOT_VOLATILE: set volatile mirror to fetch packages from
|
# \$LB_MIRROR_CHROOT_UPDATES: set updates mirror to fetch packages from
|
||||||
# (Default: ${LB_MIRROR_CHROOT_VOLATILE})
|
# (Default: ${LB_MIRROR_CHROOT_UPDATES})
|
||||||
LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE}"
|
LB_MIRROR_CHROOT_UPDATES="${LB_MIRROR_CHROOT_UPDATES}"
|
||||||
|
|
||||||
# \$LB_MIRROR_CHROOT_BACKPORTS: set backports mirror to fetch packages from
|
# \$LB_MIRROR_CHROOT_BACKPORTS: set backports mirror to fetch packages from
|
||||||
# (Default: ${LB_MIRROR_CHROOT_BACKPORTS})
|
# (Default: ${LB_MIRROR_CHROOT_BACKPORTS})
|
||||||
|
@ -1179,9 +1179,9 @@ LB_MIRROR_BINARY="${LB_MIRROR_BINARY}"
|
||||||
# (Default: ${LB_MIRROR_BINARY_SECURITY})
|
# (Default: ${LB_MIRROR_BINARY_SECURITY})
|
||||||
LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY}"
|
LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY}"
|
||||||
|
|
||||||
# \$LB_MIRROR_BINARY_VOLATILE: set volatile mirror which ends up in the image
|
# \$LB_MIRROR_BINARY_UPDATES: set updates mirror which ends up in the image
|
||||||
# (Default: ${LB_MIRROR_BINARY_VOLATILE})
|
# (Default: ${LB_MIRROR_BINARY_UPDATES})
|
||||||
LB_MIRROR_BINARY_VOLATILE="${LB_MIRROR_BINARY_VOLATILE}"
|
LB_MIRROR_BINARY_UPDATES="${LB_MIRROR_BINARY_UPDATES}"
|
||||||
|
|
||||||
# \$LB_MIRROR_BINARY_BACKPORTS: set backports mirror which ends up in the image
|
# \$LB_MIRROR_BINARY_BACKPORTS: set backports mirror which ends up in the image
|
||||||
# (Default: ${LB_MIRROR_BINARY_BACKPORTS})
|
# (Default: ${LB_MIRROR_BINARY_BACKPORTS})
|
||||||
|
@ -1265,9 +1265,9 @@ LB_LINUX_PACKAGES="${LB_LINUX_PACKAGES}"
|
||||||
# (Default: ${LB_SECURITY})
|
# (Default: ${LB_SECURITY})
|
||||||
LB_SECURITY="${LB_SECURITY}"
|
LB_SECURITY="${LB_SECURITY}"
|
||||||
|
|
||||||
# \$LB_VOLATILE: enable volatile updates
|
# \$LB_UPDATES: enable updates updates
|
||||||
# (Default: ${LB_VOLATILE})
|
# (Default: ${LB_UPDATES})
|
||||||
LB_VOLATILE="${LB_VOLATILE}"
|
LB_UPDATES="${LB_UPDATES}"
|
||||||
|
|
||||||
# \$LB_BACKPORTS: enable backports updates
|
# \$LB_BACKPORTS: enable backports updates
|
||||||
# (Default: ${LB_BACKPORTS})
|
# (Default: ${LB_BACKPORTS})
|
||||||
|
|
Loading…
Reference in New Issue