Unify logging of grml-live
[grml-live.git] / grml-live
1 #!/bin/bash
2 # Filename:      grml-live
3 # Purpose:       build process script for generating a (grml based) Linux Live-ISO
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 # Latest change: Wed Oct 24 10:11:02 CEST 2007 [mika]
8 ################################################################################
9
10 # read configuration files, set some misc variables {{{
11
12 export LANG=C
13 export LC_ALL=C
14
15 # exit on any error:
16 set -e
17
18 GRML_LIVE_VERSION='0.0.7'
19
20 # we need root permissions for the build-process:
21 if [ "$(id -u 2>/dev/null)" != 0 ] ; then
22    echo "Error: please run this script with uid 0 (root)." >&2
23    exit 1
24 fi
25
26 if [ -r /var/run/fai/FAI_INSTALLATION_IN_PROGRESS ] ; then
27    echo "/usr/sbin/fai already running or was aborted before.">&2
28    echo "You may remove /var/run/fai/FAI_INSTALLATION_IN_PROGRESS and try again.">&2
29    exit 1
30 fi
31
32 # make sure they are not set by default
33 VERBOSE=''
34 FORCE=''
35
36 if [ -r /etc/grml/lsb-functions ] ; then
37    . /etc/grml/lsb-functions
38 else
39    einfo()  { echo "  [*] $*" ;}
40    eerror() { echo "  [!] $*">&2 ;}
41    ewarn()  { echo "  [x] $*" ;}
42    eend()   { return 0 ;}
43 fi
44
45 # source main configuration file:
46 LIVE_CONF=/etc/grml/grml-live.conf
47 . $LIVE_CONF
48
49 PN=$(basename $0)
50 # }}}
51
52 # clean exit {{{
53 bailout() {
54   [ -n "$MIRROR_DIRECTORY" ] && umount "${CHROOT_OUTPUT}/${MIRROR_DIRECTORY}"
55   [ -n "$1" ] && EXIT="$1" || EXIT="1"
56   [ -n "$2" ] && eerror "$2">&2
57   exit "$EXIT"
58 }
59 trap bailout 1 2 3 15
60 # }}}
61
62 # check for important variables {{{
63 [ -n "$GRML_FAI_CONFIG" ] || GRML_FAI_CONFIG=/etc/grml/fai
64 [ -n "$HOSTNAME" ] || HOSTNAME=grml
65 [ -n "$USERNAME" ] || USERNAME=grml
66 [ -n "$CLASSES" ]  || CLASSES="GRML,I386"
67 [ -n "$BOOT_METHOD" ] || BOOT_METHOD='isolinux'
68 [ -n "$OUTPUT" ] || bailout 1 "${PN}: \$OUTPUT not specified. Please adjust $LIVE_CONF. Exiting."
69
70 [ -n "$VERSION" ]  || VERSION="0.0.1"
71 [ -n "$RELEASENAME" ] || RELEASENAME="grml-live rocks"
72 [ -n "$GRML_NAME" ] || GRML_NAME='grml'
73
74 [ -d /var/log/fai/dirinstall/"${HOSTNAME}" ] || mkdir -p /var/log/fai/dirinstall/${HOSTNAME}
75 if [ -d /var/log/fai/dirinstall/"${HOSTNAME}" ] ; then
76    LOGFILE=/var/log/fai/dirinstall/${HOSTNAME}/grml-live.log
77 else
78    LOGFILE="$LOGDIR/grml-live.log"
79 fi
80
81 NFSROOT_CONF=/etc/grml/fai/make-fai-nfsroot.conf
82
83 # }}}
84
85 # some important functions {{{
86
87 # log output:
88 # usage: log "string to log"
89 log() { echo "$*" >> $LOGFILE ; }
90
91 # cut string at character number int = $1
92 # usage: cut_string 5 "1234567890" will output "12345"
93 cut_string() {
94   [ -n "$2" ] || return 1
95   echo "$2" | head -c "$1"; echo -ne "\n"
96 }
97
98 # prepend int = $1 spaces before string = $2
99 # usage: extend_string_begin 5 "123" will output "  123"
100 extend_string_begin() {
101   [ -n "$2" ] || return 1
102   local COUNT="$(echo $2 | wc -c)"
103   local FILL="$(expr $COUNT - $1)"
104   while [ "$FILL" -gt 1 ] ; do
105     echo -n " "
106     local FILL=$(expr $FILL - 1)
107   done
108   while [ "$FILL" -lt 1 ] ; do
109     echo -n " "
110     local FILL=$(expr $FILL + 1)
111   done
112   echo "$2" | head -c "$1"; echo -ne "\n"
113 }
114
115 # append int = $1 spaces to string = $2
116 # usage: extend_string_begin 5 "123" will output "123  "
117 extend_string_end() {
118   [ -n "$2" ] || return 1
119   echo -n "$2" | head -c "$1"
120   local COUNT="$(echo $2 | wc -c)"
121   local FILL="$(expr $COUNT - $1)"
122   while [ "$FILL" -gt 1 ] ; do
123     echo -n " "
124     local FILL=$(expr $FILL - 1)
125   done
126   while [ "$FILL" -lt 1 ] ; do
127     echo -n " "
128     local FILL=$(expr $FILL + 1)
129   done
130   echo -ne "\n"
131 }
132 # }}}
133
134 # usage information {{{
135 usage()
136 {
137   echo "
138 $PN - build process script for generating a (grml based) Linux Live-ISO
139
140 Usage: $PN [-a <architecture>] [-c <classe[s]>] [-g <grml_name>] \\
141                  [-i <iso_name> ] [-o <output_directory>] [-s <suite>] \\
142                  [-t <template_directory>] [-s <suite>] \\
143                  [-v <version_number>] [-FVh]
144
145 Usage examples:
146
147     $PN
148     $PN -c GRMLBASE,GRML_SMALL,I386 -o /grml/
149     $PN -c GRMLBASE,GRML_MEDIUM,I386 -o /dev/shm/grml
150     $PN -c GRMLBASE,GRML_SMALL,I386 -g grml-small -v 1.0
151     $PN -c GRMLBASE,GRML_FULL,I386 -i grml_0.0-1.iso -v 0.0-1
152     $PN -c GRMLBASE,GRML_FULL,I386 -s sid -V -r 'grml-live rocks'
153
154 More details: man grml-live
155               /usr/share/doc/grml-live/grml-live.html
156
157 Please send your bug reports, feedback,.. to the grml-team.
158 http://grml.org/bugs/
159 "
160 }
161 # }}}
162
163 # command line parsing {{{
164
165 while getopts "a:c:g:i:o:r:s:t:v:FhV" opt; do
166   case "$opt" in
167     a) ARCH="$OPTARG" ;;
168     c) CLASSES="$OPTARG" ;;
169     g) GRML_NAME="$OPTARG" ;;
170     i) ISO_NAME="$OPTARG" ;;
171     o) OUTPUT="$OPTARG"
172        CHROOT_OUTPUT="$OUTPUT/grml_chroot"
173        BUILD_OUTPUT="$OUTPUT/grml_cd"
174        ISO_OUTPUT="$OUTPUT/grml_isos"
175        ;;
176     r) RELEASENAME="$OPTARG" ;;
177     s) SUITE="$OPTARG" ;;
178     t) TEMPLATE_DIRECTORY="$OPTARG";;
179     v) VERSION="$OPTARG" ;;
180     F) FORCE=1 ;;
181     h) usage ; bailout 0 ;;
182     V) VERBOSE="-v" ;;
183     ?) echo "invalid option -$OPTARG" >&2; bailout 1 ;;
184   esac
185 done
186 shift $(($OPTIND - 1))  # set ARGV to the first not parsed commandline parameter
187 # }}}
188
189 # some misc checks before executing FAI {{{
190 [ -n "$CLASSES" ] || bailout 1 "Error: \$CLASSES unset, please set it in $LIVE_CONF or
191 specify it on the command line using the -c option."
192 [ -n "$OUTPUT" ] || bailout 1 "Error: \$OUTPUT unset, please set it in $LIVE_CONF or
193 specify it on the command line using the -o option."
194 # }}}
195
196 # ask user whether the setup is ok {{{
197 if [ -z "$FORCE" ] ; then
198    echo
199    echo "${PN} [${GRML_LIVE_VERSION}]: check your configuration (or use -F to force execution):"
200    echo
201    echo "  FAI classes:       $CLASSES"
202    echo "  main directory:    $OUTPUT"
203    [ -n "$CHROOT_OUTPUT" ] && echo "  chroot target:     $CHROOT_OUTPUT"
204    [ -n "$BUILD_OUTPUT" ]  && echo "  build target:      $BUILD_OUTPUT"
205    [ -n "$ISO_OUTPUT" ]    && echo "  ISO target:        $ISO_OUTPUT"
206    [ -n "$GRML_NAME" ]     && echo "  grml name:         $GRML_NAME"
207    [ -n "$RELEASENAME" ]   && echo "  release name:      $RELEASENAME"
208    [ -n "$VERSION" ]       && echo "  grml version:      $VERSION"
209    [ -n "$SUITE" ]         && echo "  Debian suite:      $SUITE"
210    [ -n "$ARCH" ]          && echo "  Architecture:      $ARCH"
211    [ -n "$BOOT_METHOD" ]   && echo "  Boot method:       $BOOT_METHOD"
212    [ -n "$TEMPLATE_DIRECTORY" ] && echo "  Template files:    $TEMPLATE_DIRECTORY"
213    [ -n "$FAI_ARGS" ]      && echo "  additional arguments for FAI: $FAI_ARGS"
214    [ -n "$VERBOSE" ]       && echo "  Using VERBOSE mode."
215    echo
216    echo -n "Is this ok for you? [y/N] "
217    read a
218    if ! [ "$a" = 'y' -o "$a" = 'Y' ] ; then
219       bailout 1 "Exiting as requested."
220    fi
221    echo
222 fi
223
224 start_seconds=$(cut -d . -f 1 /proc/uptime)
225 log "------------------------------------------------------------------------------"
226 log "Starting grml-live [${GRML_LIVE_VERSION}] run [$(date)]"
227 log "Executed command line: $0 $@"
228 # }}}
229
230 # on-the-fly configuration {{{
231 if [ -n "$MIRROR_DIRECTORY" ] ; then
232    if ! [ -d "$MIRROR_DIRECTORY/debian" ] ; then
233       log "Sorry, $MIRROR_DIRECTORY/debian does not seem to exist. Exiting. [$(date)]"
234       eerror "Sorry, $MIRROR_DIRECTORY/debian does not seem to exist. Exiting."
235       bailout 1
236    fi
237    echo "$MIRROR_SOURCES" > /etc/grml/fai/apt/sources.list
238    if [ -n "$GRML_LIVE_SOURCES" ] ; then
239       echo "$GRML_LIVE_SOURCES" >> /etc/grml/fai/apt/sources.list
240    fi
241 elif [ -n "$GRML_LIVE_SOURCES" ] ; then
242    echo "$GRML_LIVE_SOURCES" > /etc/grml/fai/apt/sources.list
243 fi
244
245 if [ -n "$FAI_DEBOOTSTRAP" ] ; then
246    sed -i "s#^FAI_DEBOOTSTRAP=.*#FAI_DEBOOTSTRAP=\"$FAI_DEBOOTSTRAP\"#" $NFSROOT_CONF
247 fi
248
249 # does this suck? YES!
250 if [ -n "$SUITE" ] ; then
251    sed -i "s/SUITE=.*/SUITE=\"$SUITE\"/" $LIVE_CONF
252
253    DIST="\|\ etch\ \|\ stable\ \|\ lenny\ \|\ testing\ \|\ sid\ \|\ unstable\ "
254    sed -i "s/\(deb .\+\)\([ \t]+\)$DIST\([ \t]+\)\(main \)/\1\2 $SUITE \3\4/" $LIVE_CONF
255    sed -i "s/\(deb .\+\)\([ \t]+\)$DIST\([ \t]+\)\(main \)/\1\2 $SUITE \3\4/" /etc/grml/fai/apt/sources.list
256
257    sed -i "s|FAI_DEBOOTSTRAP=\"[a-z]* |FAI_DEBOOTSTRAP=\"$SUITE |" $LIVE_CONF
258    sed -i "s|FAI_DEBOOTSTRAP=\"[a-z]* |FAI_DEBOOTSTRAP=\"$SUITE |" $NFSROOT_CONF
259 fi
260
261 # set $ARCH
262 [ -n "$ARCH" ] || ARCH="$(dpkg --print-architecture)"
263 if grep -q -- 'FAI_DEBOOTSTRAP_OPTS.*--arch' $NFSROOT_CONF ; then
264    sed -i "s/--arch [a-z0-9]* /--arch $ARCH /" $NFSROOT_CONF
265 else
266    sed -i "s|FAI_DEBOOTSTRAP_OPTS=\"\(.*\)|FAI_DEBOOTSTRAP_OPTS=\"--arch $ARCH \1|" $NFSROOT_CONF
267 fi
268 # }}}
269
270 # CHROOT_OUTPUT - execute FAI {{{
271 [ -n "$CHROOT_OUTPUT" ] || CHROOT_OUTPUT="$OUTPUT/grml_chroot"
272
273 if [ -d "$CHROOT_OUTPUT/bin" ] ; then
274    log "$CHROOT_OUTPUT exists already, skipping stage 'fai dirinstall'"
275    ewarn "$CHROOT_OUTPUT exists already, skipping stage 'fai dirinstall'" ; eend 0
276 else
277    mkdir -p "$CHROOT_OUTPUT" || bailout 5 "Problem with creating $CHROOT_OUTPUT for FAI"
278    if [ -n "${MIRROR_DIRECTORY}" ] ; then
279       mkdir -p "${CHROOT_OUTPUT}/${MIRROR_DIRECTORY}"
280       mount --bind "${MIRROR_DIRECTORY}" "${CHROOT_OUTPUT}/${MIRROR_DIRECTORY}"
281    fi
282    fai $VERBOSE -C "$GRML_FAI_CONFIG" -c"$CLASSES" -u "$HOSTNAME" dirinstall "$CHROOT_OUTPUT" $FAI_ARGS | tee -a $LOGFILE
283    umount $CHROOT_OUTPUT/proc 2>/dev/null || /bin/true
284    umount $CHROOT_OUTPUT/sys  2>/dev/null || /bin/true
285    [ -n "$MIRROR_DIRECTORY" ] && umount "${CHROOT_OUTPUT}/${MIRROR_DIRECTORY}"
286
287    # notice: 'fai dirinstall' does not seem to exit appropriate, so:
288    ERROR=''
289    if [ -r "/var/log/fai/dirinstall/$HOSTNAME/software.log" ] ; then
290       # 1 errors during executing of commands
291       # Unable to write mmap - msync (28 No space left on device)
292       grep 'dpkg: error processing' /var/log/fai/dirinstall/$HOSTNAME/software.log >> $LOGFILE && ERROR=1
293       grep 'E: Method http has died unexpectedly!' /var/log/fai/dirinstall/$HOSTNAME/software.log >> $LOGFILE && ERROR=2
294       grep 'ERROR: chroot' /var/log/fai/dirinstall/$HOSTNAME/software.log >> $LOGFILE && ERROR=3
295    fi
296
297    if [ -r "/var/log/fai/dirinstall/$HOSTNAME/shell.log" ] ; then
298       grep 'FAILED with exit code' /var/log/fai/dirinstall/$HOSTNAME/shell.log >> $LOGFILE && ERROR=2
299    fi
300
301    if [ -n "$ERROR" ] ; then
302       log "There was an error [${ERROR}] during execution of stage 'fai dirinstall' [$(date)]"
303       eerror "There was an error during execution of stage 'fai dirinstall'"
304       echo "   Check out /var/log/fai/dirinstall/$HOSTNAME/ for details. [exit ${ERROR}]"
305       eend 1
306       bailout 1
307    else
308       log "Finished execution of stage 'fai dirinstall' [$(date)]"
309       einfo "Finished execution of stage 'fai dirinstall'"
310    fi
311 fi
312 # }}}
313
314 # BUILD_OUTPUT - execute arch specific stuff and squashfs {{{
315 [ -n "$BUILD_OUTPUT" ] || BUILD_OUTPUT="$OUTPUT/grml_cd"
316 mkdir -p "$BUILD_OUTPUT" || bailout 6 "Problem with creating $BUILD_OUTPUT for stage ARCH"
317
318 # i386:
319 if [ "$ARCH" = i386 ] || [ "$ARCH" = amd64 ] ; then
320    if [ -d "$BUILD_OUTPUT"/boot ] ; then
321       log "$BUILD_OUTPUT/boot exists already, skipping stage 'boot'"
322       ewarn "$BUILD_OUTPUT/boot exists already, skipping stage 'boot'" ; eend 0
323    else
324       # booting stuff:
325       mkdir -p "$BUILD_OUTPUT"/boot/isolinux
326       cp /boot/memtest86+.bin "$BUILD_OUTPUT"/boot/isolinux/memtest
327
328       # if we don't have an initrd we a) can't boot and b) there was an error
329       # during build, so check for the file:
330       if [ -f "$CHROOT_OUTPUT"/boot/initrd* ] ; then
331          cp "$CHROOT_OUTPUT"/boot/initrd*  "$BUILD_OUTPUT"/boot/isolinux/initrd.gz
332       else
333          log "No initrd found inside $CHROOT_OUTPUT/boot/ - Exiting"
334          eerror "No initrd found inside $CHROOT_OUTPUT/boot/ - Exiting" ; eend 1
335          bailout 10
336       fi
337
338       cp "$CHROOT_OUTPUT"/boot/vmlinuz*                    "$BUILD_OUTPUT"/boot/isolinux/linux26
339       cp /usr/lib/syslinux/chain.c32                       "$BUILD_OUTPUT"/boot/isolinux/
340       cp /usr/lib/syslinux/isolinux.bin                    "$BUILD_OUTPUT"/boot/isolinux/
341       cp /usr/lib/syslinux/memdisk                         "$BUILD_OUTPUT"/boot/isolinux/
342       cp /usr/lib/syslinux/menu.c32                        "$BUILD_OUTPUT"/boot/isolinux/
343
344       [ -n "$TEMPLATE_DIRECTORY" ] || TEMPLATE_DIRECTORY='/usr/share/grml-live/templates'
345       if ! [ -d "${TEMPLATE_DIRECTORY}"/boot ] ; then
346          log "${TEMPLATE_DIRECTORY}/boot does not exist. Exiting."
347          eerror "${TEMPLATE_DIRECTORY}/boot does not exist. Exiting." ; eend 1
348          bailout 8
349       fi
350       cp ${TEMPLATE_DIRECTORY}/boot/isolinux/*               "$BUILD_OUTPUT"/boot/isolinux/
351       cp ${TEMPLATE_DIRECTORY}/boot/isolinux/*               "$BUILD_OUTPUT"/boot/isolinux/
352       cp -a ${TEMPLATE_DIRECTORY}/boot/grub                  "$BUILD_OUTPUT"/boot/
353
354       if ! [ -d "${TEMPLATE_DIRECTORY}"/GRML ] ; then
355          log "${TEMPLATE_DIRECTORY}/GRML does not exist. Exiting."
356          eerror "${TEMPLATE_DIRECTORY}/GRML does not exist. Exiting." ; eend 1
357          bailout 9
358       fi
359       [ -d "$BUILD_OUTPUT"/GRML ] || mkdir "$BUILD_OUTPUT"/GRML
360       cp -a ${TEMPLATE_DIRECTORY}/GRML/* "$BUILD_OUTPUT"/GRML/
361
362       # adjust boot splash information:
363       ISO_DATE="$(date +%Y-%m-%d)"
364       RELEASE_INFO="$GRML_NAME $VERSION - Release Codename $RELEASENAME"
365       RELEASE_INFO="$(cut_string 68 "$RELEASE_INFO")"
366       RELEASE_INFO="$(extend_string_end 68 "$RELEASE_INFO")"
367
368       sed -i "s/%RELEASE_INFO%/$GRML_NAME $VERSION - $RELEASENAME/" "$BUILD_OUTPUT"/GRML/grml-version
369       sed -i "s/%DATE%/$ISO_DATE/"             "$BUILD_OUTPUT"/GRML/grml-version
370
371       sed -i "s/%RELEASE_INFO%/$RELEASE_INFO/" "$BUILD_OUTPUT"/boot/isolinux/boot.msg
372       sed -i "s/%DATE%/$ISO_DATE/"             "$BUILD_OUTPUT"/boot/isolinux/boot.msg
373
374       sed -i "s/%RELEASE_INFO%/$RELEASE_INFO/" "$BUILD_OUTPUT"/boot/isolinux/boot-beep.msg
375       sed -i "s/%DATE%/$ISO_DATE/"             "$BUILD_OUTPUT"/boot/isolinux/boot-beep.msg
376
377       sed -i "s/%VERSION%/$VERSION/"           "$BUILD_OUTPUT"/boot/grub/menu.lst
378       sed -i "s/%GRML_NAME%/$GRML_NAME/"       "$BUILD_OUTPUT"/boot/grub/menu.lst
379
380       # autostart for Windows:
381       if [ -d "${TEMPLATE_DIRECTORY}/windows/autostart/" ] ; then
382          cp ${TEMPLATE_DIRECTORY}/windows/autostart/* "$BUILD_OUTPUT"/
383       fi
384       # windows-binaries:
385       if [ -n "$WINDOWS_BINARIES" ] ; then
386          if [ -f "$BUILD_OUTPUT"/windows/putty.exe ] ; then
387             log "$BUILD_OUTPUT/windows exists already, skipping stage 'WINDOWS_BINARIES'"
388             ewarn "$BUILD_OUTPUT/windows exists already, skipping stage 'WINDOWS_BINARIES'" ; eend 0
389          else
390             mkdir "$BUILD_OUTPUT"/windows
391             ( cd "$BUILD_OUTPUT"/windows
392               for file in pageant plink pscp psftp putty puttygen ; do
393                  wget -O ${file}.exe ${WINDOWS_BINARIES}/${file}.exe
394               done )
395          fi
396       log "Finished execution of stage 'WINDOWS_BINARIES' [$(date)]"
397       einfo "Finished execution of stage 'WINDOWS_BINARIES'" ; eend 0
398       fi
399    einfo "Finished execution of stage 'boot'" ; eend 0
400    fi
401 # ppc:
402 elif [ "$ARCH" = powerpc ] ; then
403     ewarn 'Warning: formorer, it is your turn. :)'>&2
404 # unsuported:
405 else
406    eerror 'Error: Unsupported ARCH, sorry. Want to support it? Contribute!' ; eend 1
407 fi
408
409 if [ -f "$BUILD_OUTPUT"/live/grml.squashfs ] ; then
410    log "$BUILD_OUTPUT/live exists already, skipping stage 'squashfs'"
411    ewarn "$BUILD_OUTPUT/live exists already, skipping stage 'squashfs'" ; eend 0
412 else
413    mkdir "$BUILD_OUTPUT"/live
414    mksquashfs $CHROOT_OUTPUT/* $BUILD_OUTPUT/live/grml.squashfs -noappend
415    log "Finished execution of stage 'squashfs' [$(date)]"
416    einfo "Finished execution of stage 'squashfs'" ; eend 0
417 fi
418
419 # create md5sum file:
420 ( cd $BUILD_OUTPUT/GRML &&
421 find .. -type f -not -name md5sums -not -name isolinux.bin -exec md5sum {} \; > md5sums )
422 # }}}
423
424 # ISO_OUTPUT - mkisofs {{{
425 [ -n "$ISO_OUTPUT" ] || ISO_OUTPUT="$OUTPUT/grml_isos"
426 [ -n "$ISO_NAME" ] || ISO_NAME="${GRML_NAME}_${VERSION}.iso"
427
428 if [ "$BOOT_METHOD" = "isolinux" ] ; then
429    BOOT_FILE="boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat"
430 elif [ "$BOOT_METHOD" = "grub" ] ; then
431    BOOT_FILE="boot/grub/stage2_eltorito"
432 fi
433
434 if [ -f "${ISO_OUTPUT}/${ISO_NAME}" ] ; then
435    log "$ISO_OUTPUT exists already, skipping stage 'iso build'"
436    ewarn "$ISO_OUTPUT exists already, skipping stage 'iso build'" ; eend 0
437 else
438    mkdir -p "$ISO_OUTPUT" || bailout 6 "Problem with creating $ISO_OUTPUT for stage 'iso build'"
439    CURRENT_DIR=$(pwd)
440    cd "$BUILD_OUTPUT" &&
441    mkisofs -V "grml $VERSION" -publisher 'grml-live | grml.org' \
442            -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table    \
443            -b $BOOT_FILE \
444            -o "${ISO_OUTPUT}/${ISO_NAME}" . ; RC=$?
445    cd $CURRENT_DIR
446    if [ "$RC" = 0 ] ; then
447       log "Finished execution of stage 'iso build' [$(date)]"
448       einfo "Finished execution of stage 'iso build'" ; eend 0
449    else
450       log "There was an error ($RC) executing stage 'iso build' [$(date)]"
451       eerror "There was an error executing stage 'iso build'" ; eend 1
452       bailout $RC
453    fi
454 fi
455 # }}}
456
457 # finalize {{{
458 [ -n "$start_seconds" ] && SECONDS="$[$(cut -d . -f 1 /proc/uptime)-$start_seconds]" || SECONDS="unknown"
459 einfo "Sucessfully finished execution of $PN [running ${SECONDS} seconds]" ; eend 0
460 log "Sucessfully finished execution of $PN [running ${SECONDS} seconds]"
461 log "------------------------------------------------------------------------------"
462 bailout 0
463 # }}}
464
465 ## END OF FILE #################################################################
466 # vim:foldmethod=marker ts=2 ft=sh ai expandtab tw=80 sw=3