614da441141c124be5a281da872700628f87aad5
[grml-live.git] / buildd / execute.sh
1 # Filename:      /usr/share/grml-live/buildd/execute.sh
2 # Purpose:       main execution file for grml-live buildd
3 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2 or any later version.
6 ################################################################################
7
8 . /usr/share/grml-live/buildd/functions.sh || exit 1
9
10 # execute main grml-live
11 grml_live_run
12
13 # store logs on remote server
14 upload_logs
15
16 # store information about ISO size
17 iso_details
18
19 # create logs for adding to mail, but only if it fails
20 create_logs
21 send_mail -e
22
23 # move the ISO to final destination
24 store_iso
25
26 # clean exit
27 bailout
28
29 ## END OF FILE #################################################################