]> git.ipfire.org Git - ipfire-3.x.git/blob - tools/make-batch
Added new package: dosfstools.
[ipfire-3.x.git] / tools / make-batch
1 #!/bin/bash
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2008 Michael Tremer & Christian Schmidt #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 BATCHLOG=$BASEDIR/log_${TARGET}/_build.00-batch.log
23
24 ###############################################################################
25 # Starts the batch process in the background #
26 ###############################################################################
27 batch_start() {
28 [ "$1" = "--clean" ] && TARGET=$TARGET $0 clean
29
30 screen -dmS ipfire $0 batch _run
31 }
32
33 ###############################################################################
34 # Run this to check what is going on in the moment #
35 ###############################################################################
36 batch_attach() {
37 screen -x ipfire
38 if [ "$?" -eq "0" ]; then
39 beautify message DONE
40 else
41 beautify message FAIL
42 fi
43 }
44
45 ###############################################################################
46 # This is the main batch function that runs one thing after an other #
47 ###############################################################################
48 batch_run() {
49 gettoolchain
50 $0 build | $BASEDIR/tools/tee $BATCHLOG
51 sleep 5
52 if [ -e $FAILED ]; then
53 SUBJECT="Failed :("
54 else
55 SUBJECT="Success!"
56 puttarget
57 fi
58 SUBJECT=$SUBJECT batch_mail
59 }
60
61 ###############################################################################
62 # A function to send an email to the developers #
63 ###############################################################################
64 batch_mail() {
65 MAIL_SUBJECT="[build.ipfire.org - ${HOSTNAME}] - ${SUBJECT}"
66
67 for i in MAIL_SERVER MAIL_TO MAIL_FROM MAIL_USER MAIL_PASS MAIL_SUBJECT; do
68 [ -n "${!i}" ] && export ${i}="${!i}"
69 done
70
71 ## Send the email
72 tools/alog2html < $BATCHLOG 2>&1 | tools/sendEmail
73 }