Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tails
live-build
Commits
222c5011
Commit
222c5011
authored
Jun 19, 2013
by
Daniel Baumann
Browse files
Adding upstream version 4.0~a20.
parent
0cc3ec4d
Changes
22
Hide whitespace changes
Inline
Side-by-side
VERSION
View file @
222c5011
4.0~a
19
-1
4.0~a
20
-1
data/debian-cd/hardy
deleted
120000 → 0
View file @
0cc3ec4d
maverick
\ No newline at end of file
data/debian-cd/oneiric
deleted
120000 → 0
View file @
0cc3ec4d
maverick
\ No newline at end of file
examples/auto/build
View file @
222c5011
...
...
@@ -2,4 +2,4 @@
set
-
e
lb
build
noauto
"${@}"
&&
echo
$?
2
>&
1
|
tee
build
.
log
lb
build
noauto
"${@}"
2
>&
1
|
tee
build
.
log
frontends/cgi/live-build-cgi
View file @
222c5011
...
...
@@ -32,10 +32,16 @@ fi
echo
"Content-type: text/html"
echo
#QUERY_STRING=`cat /dev/stdin`
QUERY_STRING
=
$(
cat
/dev/stdin
)
# If we are passed something then read it in.
if
[
"
$REQUEST_METHOD
"
=
"POST"
]
&&
[
"
$CONTENT_LENGTH
"
-gt
0
]
then
#QUERY_STRING=`cat /dev/stdin`
QUERY_STRING
=
$(
cat
/dev/stdin
)
#read -n $CONTENT_LENGTH POST_DATA <&0
fi
# Translate parameters
QUERY_STRING
=
$(
echo
"
${
QUERY_STRING
}
"
|
sed
-e
's/%2F/\//g'
-e
's/+/ /g'
-e
's/%3B/;/g'
-e
's/%7E/~/g'
-e
's/%3A/:/g'
-e
's/%40/@/g'
-e
's/%3D/=/g'
-e
's/%2B/+/g'
)
QUERY_STRING
=
$(
echo
"
${
POST_DATA
}
"
|
sed
-e
's/%2F/\//g'
-e
's/+/ /g'
-e
's/%3B/;/g'
-e
's/%7E/~/g'
-e
's/%3A/:/g'
-e
's/%40/@/g'
-e
's/%3D/=/g'
-e
's/%2B/+/g'
)
# Debug the filtering string
# echo ${QUERY_STRING}
...
...
frontends/cgi/live-build-cgi.cron
View file @
222c5011
...
...
@@ -111,7 +111,9 @@ then
# Run build if config went ok
if
[
"
${
_ERRORCONFIG
}
"
-eq
"0"
]
then
lb build
>>
"
${
_BUILD_PATH
}
"
/log 2>&1
# We need to finish script.
set
+e
lb build noauto
>>
"
${
_BUILD_PATH
}
"
/log 2>&1
_ERRORBUILD
=
"
${
?
}
"
else
echo
"Build stage skipped. Config produced an error:
${
_ERRORCONFIG
}
"
>>
"
${
_BUILD_PATH
}
"
/log
...
...
functions/defaults.sh
View file @
222c5011
...
...
@@ -507,6 +507,7 @@ Set_defaults ()
remove-openssh-server-host-keys \
remove-python-py \
remove-temporary-files \
remove-ssl-cert-snakeoil \
remove-udev-persistent-cd-rules \
remove-udev-persistent-net-rules \
remove-systemd-machine-id \
...
...
functions/releases.sh
View file @
222c5011
...
...
@@ -9,18 +9,16 @@
# Debian releases
RELEASE_wheezy
=
"7
.0.0
"
RELEASE_wheezy
=
"7"
RELEASE_jessie
=
"8"
RELEASE_sid
=
"unstable"
# Progress Linux releases
RELEASE_baureo
=
"2
.0
"
RELEASE_charon
=
"
unstable
"
RELEASE_baureo
=
"2"
RELEASE_charon
=
"
3
"
# Ubuntu releases
RELEASE_hardy
=
"8.04"
# LTS: 2013-04-01
RELEASE_lucid
=
"10.04"
# LTS: 2015-04-01
RELEASE_oneiric
=
"11.10"
# 2013-04-01
RELEASE_precise
=
"12.04"
# LTS: 2017-04-01
RELEASE_quantal
=
"12.10"
# 2014-04-01
RELEASE_raring
=
"13.04"
# 2014-10-01
manpages/de/lb_bootstrap_cdebootstrap.de.1
View file @
222c5011
...
...
@@ -11,7 +11,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
.TH LIVE\-BUILD 1
27
.0
5
.2013 4.0~a
19
\-1 "Live Systems Projekt"
.TH LIVE\-BUILD 1
19
.0
6
.2013 4.0~a
20
\-1 "Live Systems Projekt"
.SH NAME
\fBlive\-build\fP \- System Build Skripte
...
...
manpages/de/lb_bootstrap_debootstrap.de.1
View file @
222c5011
...
...
@@ -11,7 +11,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
.TH LIVE\-BUILD 1
27
.0
5
.2013 4.0~a
19
\-1 "Live Systems Projekt"
.TH LIVE\-BUILD 1
19
.0
6
.2013 4.0~a
20
\-1 "Live Systems Projekt"
.SH NAME
\fBlive\-build\fP \- System Build Skripte
...
...
manpages/en/lb_bootstrap_cdebootstrap.1
View file @
222c5011
...
...
@@ -6,7 +6,7 @@
.\" under certain conditions; see COPYING for details.
.\"
.\"
.TH LIVE\-BUILD 1 2013\-0
5
\-
27
4.0~a
19
-1 "Live Systems Project"
.TH LIVE\-BUILD 1 2013\-0
6
\-
19
4.0~a
20
-1 "Live Systems Project"
.SH NAME
\fBlive\-build\fR \- System Build Scripts
...
...
manpages/en/lb_bootstrap_debootstrap.1
View file @
222c5011
...
...
@@ -6,7 +6,7 @@
.\" under certain conditions; see COPYING for details.
.\"
.\"
.TH LIVE\-BUILD 1 2013\-0
5
\-
27
4.0~a
19
-1 "Live Systems Project"
.TH LIVE\-BUILD 1 2013\-0
6
\-
19
4.0~a
20
-1 "Live Systems Project"
.SH NAME
\fBlive\-build\fR \- System Build Scripts
...
...
manpages/es/lb_bootstrap_cdebootstrap.es.1
View file @
222c5011
...
...
@@ -11,7 +11,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
.TH LIVE\-BUILD 1
27
.0
5
.2013 4.0~a
19
\-1 "Proyecto Live Systems"
.TH LIVE\-BUILD 1
19
.0
6
.2013 4.0~a
20
\-1 "Proyecto Live Systems"
.SH NOMBRE
\fBlive\-build\fP \- Scripts de Creación del Sistema
...
...
manpages/es/lb_bootstrap_debootstrap.es.1
View file @
222c5011
...
...
@@ -11,7 +11,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
.TH LIVE\-BUILD 1
27
.0
5
.2013 4.0~a
19
\-1 "Proyecto Live Systems"
.TH LIVE\-BUILD 1
19
.0
6
.2013 4.0~a
20
\-1 "Proyecto Live Systems"
.SH NOMBRE
\fBlive\-build\fP \- Scripts de Creación del Sistema
...
...
manpages/po/de/lb_bootstrap_cdebootstrap.1.po
View file @
222c5011
...
...
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a
19
-1\n"
"POT-Creation-Date: 2013-0
5-27 16:47
+0300\n"
"Project-Id-Version: live-build 4.0~a
20
-1\n"
"POT-Creation-Date: 2013-0
6-19 08:02
+0300\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
"Language-Team: none\n"
...
...
@@ -24,14 +24,14 @@ msgstr "LIVE-BUILD"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "2013-0
5-27
"
msgstr "
27
.0
5
.2013"
msgid "2013-0
6-19
"
msgstr "
19
.0
6
.2013"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "4.0~a
19
-1"
msgstr "4.0~a
19
-1"
msgid "4.0~a
20
-1"
msgstr "4.0~a
20
-1"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
...
...
manpages/po/de/lb_bootstrap_debootstrap.1.po
View file @
222c5011
...
...
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a
19
-1\n"
"POT-Creation-Date: 2013-0
5-27 16:47
+0300\n"
"Project-Id-Version: live-build 4.0~a
20
-1\n"
"POT-Creation-Date: 2013-0
6-19 08:02
+0300\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
"Language-Team: none\n"
...
...
@@ -24,14 +24,14 @@ msgstr "LIVE-BUILD"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "2013-0
5-27
"
msgstr "
27
.0
5
.2013"
msgid "2013-0
6-19
"
msgstr "
19
.0
6
.2013"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "4.0~a
19
-1"
msgstr "4.0~a
19
-1"
msgid "4.0~a
20
-1"
msgstr "4.0~a
20
-1"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
...
...
manpages/po/es/lb_bootstrap_cdebootstrap.1.po
View file @
222c5011
...
...
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a
19
-1\n"
"POT-Creation-Date: 2013-0
5-27 16:47
+0300\n"
"Project-Id-Version: live-build 4.0~a
20
-1\n"
"POT-Creation-Date: 2013-0
6-19 08:02
+0300\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
"Language-Team: none\n"
...
...
@@ -23,14 +23,14 @@ msgstr "LIVE-BUILD"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "2013-0
5-27
"
msgstr "
27
.0
5
.2013"
msgid "2013-0
6-19
"
msgstr "
19
.0
6
.2013"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "4.0~a
19
-1"
msgstr "4.0~a
19
-1"
msgid "4.0~a
20
-1"
msgstr "4.0~a
20
-1"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
...
...
manpages/po/es/lb_bootstrap_debootstrap.1.po
View file @
222c5011
...
...
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
"Project-Id-Version: live-build 4.0~a
19
-1\n"
"POT-Creation-Date: 2013-0
5-27 16:47
+0300\n"
"Project-Id-Version: live-build 4.0~a
20
-1\n"
"POT-Creation-Date: 2013-0
6-19 08:02
+0300\n"
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
"Language-Team: none\n"
...
...
@@ -23,14 +23,14 @@ msgstr "LIVE-BUILD"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "2013-0
5-27
"
msgstr "
27
.0
5
.2013"
msgid "2013-0
6-19
"
msgstr "
19
.0
6
.2013"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "4.0~a
19
-1"
msgstr "4.0~a
19
-1"
msgid "4.0~a
20
-1"
msgstr "4.0~a
20
-1"
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
...
...
manpages/pot/lb_bootstrap_cdebootstrap.1.pot
View file @
222c5011
...
...
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
"POT-Creation-Date: 2013-0
5-27 16:47
+0300\n"
"POT-Creation-Date: 2013-0
6-19 08:02
+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
...
...
@@ -25,13 +25,13 @@ msgstr ""
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "2013-0
5-27
"
msgid "2013-0
6-19
"
msgstr ""
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "4.0~a
19
-1"
msgid "4.0~a
20
-1"
msgstr ""
#. type: TH
...
...
manpages/pot/lb_bootstrap_debootstrap.1.pot
View file @
222c5011
...
...
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
"POT-Creation-Date: 2013-0
5-27 16:47
+0300\n"
"POT-Creation-Date: 2013-0
6-19 08:02
+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
...
...
@@ -25,13 +25,13 @@ msgstr ""
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "2013-0
5-27
"
msgid "2013-0
6-19
"
msgstr ""
#. type: TH
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_debootstrap.1:9
#, no-wrap
msgid "4.0~a
19
-1"
msgid "4.0~a
20
-1"
msgstr ""
#. type: TH
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment