Improve error handling; make scripts re-executable
[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: Tue Sep 18 22:46:28 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 # we need root permissions for the build-process:
19 if [ "$(id -u 2>/dev/null)" != 0 ] ; then
20    echo "Error: please run this script with uid 0 (root)." >&2
21    exit 1
22 fi
23
24 # make sure they are not set by default
25 VERBOSE=''
26 FORCE=''
27
28 # source main configuration file:
29 LIVE_CONF=/etc/grml/grml-live.conf
30 . $LIVE_CONF
31
32 PN=$(basename $0)
33 # TMPFILE=$(mktemp)
34 # }}}
35
36 # clean exit {{{
37 bailout() {
38   # rm -f "$TMPFILE"
39   [ -n "$MIRROR_DIRECTORY" ] && umount "${CHROOT_TARGET}/${MIRROR_DIRECTORY}"
40   [ -n "$1" ] && EXIT="$1" || EXIT="1"
41   [ -n "$2" ] && echo "$2">&2
42   exit "$EXIT"
43 }
44 trap bailout 1 2 3 15
45 # }}}
46
47 # check for important variables {{{
48 [ -n "$GRML_FAI_CONFIG" ] || GRML_FAI_CONFIG=/etc/grml/fai
49 [ -n "$HOSTNAME" ] || HOSTNAME=grml
50 [ -n "$USERNAME" ] || USERNAME=grml
51 [ -n "$CLASSES" ]  || CLASSES="GRML,I386"
52 [ -n "$TARGET" ] || bailout 1 "${PN}: \$TARGET not specified. Please adjust $LIVE_CONF. Exiting."
53 # }}}
54
55 # usage information {{{
56 usage()
57 {
58   echo "
59 $PN - build process script for generating a (grml based) Linux Live-ISO
60
61 Usage: $PN [-c <classe[s]>] [-t <target_directory>] [-s <suite> [-Fvh]
62
63 Usage examples:
64
65     $PN
66     $PN -c GRMLBASE,GRML_X,I386 -t /grml/
67     $PN -c GRMLBASE,I386 -t /dev/shm/grml
68     $PN -c GRMLBASE,GRML_SMALL,I386
69     $PN -s sid -c GRMLBASE,I386
70
71 More details: man grml-live
72               /usr/share/doc/grml-live/grml-live.html
73
74 Please send your bug reports, feedback,.. to the grml-team.
75 http://grml.org/bugs/
76 "
77 }
78 # }}}
79
80 # command line parsing {{{
81
82 while getopts "c:s:t:Fhv" opt; do
83   case "$opt" in
84     c) CLASSES="$OPTARG" ;;
85     F) FORCE=1 ;;
86     h) usage ; bailout 0 ;;
87     s) SUITE="$OPTARG" ;;
88     t) TARGET="$OPTARG"
89        CHROOT_TARGET="$TARGET/grml_chroot"
90        BUILD_TARGET="$TARGET/grml_cd"
91        ISO_TARGET="$TARGET/grml_isos"
92        ;;
93     v) VERBOSE="-v" ;;
94     ?) echo "invalid option -$OPTARG" >&2; bailout 1 ;;
95   esac
96 done
97 shift $(($OPTIND - 1))  # set ARGV to the first not parsed commandline parameter
98
99 # }}}
100
101 # some misc checks before executing FAI {{{
102 [ -n "$CLASSES" ] || bailout 1 "Error: \$CLASSES unset, please set it in $LIVE_CONF or
103 specify it on the command line using the -c|--classes option."
104 [ -n "$TARGET" ] || bailout 1 "Error: \$TARGET unset, please set it in $LIVE_CONF or
105 specify it on the command line using the -t|--target option."
106 # }}}
107
108 # ask user whether the setup is ok {{{
109 if [ -z "$FORCE" ] ; then
110    echo
111    echo "$PN - check your configuration (or invoke using -F to force execution without prompting):"
112    echo
113    echo "  FAI classes:       $CLASSES"
114    echo "  main directory:    $TARGET"
115    [ -n "$CHROOT_TARGET" ] && echo "  chroot target:     $CHROOT_TARGET"
116    [ -n "$BUILD_TARGET" ]  && echo "  build target:      $BUILD_TARGET"
117    [ -n "$ISO_TARGET" ]    && echo "  ISO target:        $ISO_TARGET"
118    [ -n "$SUITE" ]         && echo "  Debian suite:      $SUITE"
119    [ -n "$FAI_ARGS" ]      && echo "  additional arguments for FAI: $FAI_ARGS"
120    [ -n "$VERBOSE" ]       && echo "  Using VERBOSE mode."
121    echo
122    echo -n "Is this ok for you? [y/N] "
123    read a
124    if ! [ "$a" = 'y' -o "$a" = 'Y' ] ; then
125       bailout 1 "Exiting as requested."
126    fi
127    echo
128 fi
129 # }}}
130
131 # on-the-fly configuration {{{
132 if [ -n "$MIRROR_DIRECTORY" ] ; then
133    if ! [ -d "$MIRROR_DIRECTORY/debian" ] ; then
134       echo "Sorry, $MIRROR_DIRECTORY/debian does not seem to exist. Exiting.">&2
135       bailout 1
136    fi
137    echo "$MIRROR_SOURCES" > /etc/grml/fai/apt/sources.list
138    if [ -n "$GRML_LIVE_SOURCES" ] ; then
139       echo "$GRML_LIVE_SOURCES" >> /etc/grml/fai/apt/sources.list
140    fi
141 elif [ -n "$GRML_LIVE_SOURCES" ] ; then
142    echo "$GRML_LIVE_SOURCES" > /etc/grml/fai/apt/sources.list
143 fi
144
145 if [ -n "$FAI_DEBOOTSTRAP" ] ; then
146    sed -i "s#^FAI_DEBOOTSTRAP=.*#FAI_DEBOOTSTRAP=\"$FAI_DEBOOTSTRAP\"#" /etc/grml/fai/make-fai-nfsroot.conf
147 fi
148
149 # does this suck? YES!
150 if [ -n "$SUITE" ] ; then
151    sed -i "s/SUITE=.*/SUITE=\"$SUITE\"/" $LIVE_CONF
152
153    DIST="\|\ etch\ \|\ stable\ \|\ lenny\ \|\ testing\ \|\ sid\ \|\ unstable\ "
154    sed -i "s/\(deb .\+\)\([ \t]+\)$DIST\([ \t]+\)\(main \)/\1\2 $SUITE \3\4/" $LIVE_CONF
155    sed -i "s/\(deb .\+\)\([ \t]+\)$DIST\([ \t]+\)\(main \)/\1\2 $SUITE \3\4/" /etc/grml/fai/apt/sources.list
156
157    DIST='\"etch\|=\"stable=\"lenny=\"testing=\"sid=\"unstable'
158    sed -i "s#FAI_DEBOOTSTRAP=$DIST#FAI_DEBOOTSTRAP=\"$SUITE#" $LIVE_CONF
159    sed -i "s#FAI_DEBOOTSTRAP=$DIST#FAI_DEBOOTSTRAP=\"$SUITE#" /etc/grml/fai/make-fai-nfsroot.conf
160 fi
161 # }}}
162
163 # CHROOT_TARGET - execute FAI {{{
164 [ -n "$CHROOT_TARGET" ] || CHROOT_TARGET="$TARGET/grml_chroot"
165
166 if [ -d "$CHROOT_TARGET" ] ; then
167    echo "  [x] $CHROOT_TARGET exists already, skipping the stage 'fai dirinstall'"
168 else
169    mkdir -p "$CHROOT_TARGET" || bailout 5 "Problem with creating $CHROOT_TARGET for FAI"
170    if [ -n "${MIRROR_DIRECTORY}" ] ; then
171       mkdir -p "${CHROOT_TARGET}/${MIRROR_DIRECTORY}"
172       mount --bind "${MIRROR_DIRECTORY}" "${CHROOT_TARGET}/${MIRROR_DIRECTORY}"
173    fi
174    fai $VERBOSE -C "$GRML_FAI_CONFIG" -c"$CLASSES" dirinstall "$CHROOT_TARGET" $FAI_ARGS
175    umount $CHROOT_TARGET/proc 2>/dev/null || /bin/true
176    umount $CHROOT_TARGET/sys  2>/dev/null || /bin/true
177    [ -n "$MIRROR_DIRECTORY" ] && umount "${CHROOT_TARGET}/${MIRROR_DIRECTORY}"
178
179    # notice: 'fai dirinstall' does not seem to exit appropriate, so:
180    ERROR=''
181    [ -r "/var/log/fai/dirinstall/$HOSTNAME/software.log" ] &&
182    grep -q 'dpkg: error processing' /var/log/fai/dirinstall/$HOSTNAME/software.log && ERROR=1
183
184    [ -r "/var/log/fai/dirinstall/$HOSTNAME/shell.log" ] &&
185    grep -q 'FAILED with exit code' /var/log/fai/dirinstall/$HOSTNAME/shell.log && ERROR=2
186
187    if [ -n "$ERROR" ] ; then
188       echo "  [!] There was an error during execution of stage 'fai dirinstall'"
189       echo "      Check out /var/log/fai/dirinstall/$HOSTNAME/... for details. [exit ${ERROR}]"
190       exit 1
191    else
192       echo "  [*] Finished execution of stage 'fai dirinstall'"
193    fi
194 fi
195 # }}}
196
197 # BUILD_TARGET - execute arch specific stuff and squashfs {{{
198 [ -n "$BUILD_TARGET" ] || BUILD_TARGET="$TARGET/grml_cd"
199 mkdir -p "$BUILD_TARGET" || bailout 6 "Problem with creating $BUILD_TARGET for stage ARCH"
200
201 # i386:
202 [ -n "$ARCH" ] || ARCH="$(dpkg --print-architecture)"
203 if [ "$ARCH" = i386 ] ; then
204    if [ -d "$BUILD_TARGET"/boot/isolinux ] ; then
205       echo "  [x] $BUILD_TARGET/boot/isolinux exists already - skipping stage 'boot/isolinux'"
206       continue
207    else
208       # booting stuff:
209       mkdir -p "$BUILD_TARGET"/boot/isolinux
210       mkdir "$BUILD_TARGET"/GRML
211       cp /boot/memtest86+.bin                                        "$BUILD_TARGET"/boot/isolinux/memtest
212       cp "$CHROOT_TARGET"/boot/initrd*                               "$BUILD_TARGET"/boot/isolinux/initrd.gz
213       cp "$CHROOT_TARGET"/boot/vmlinuz*                              "$BUILD_TARGET"/boot/isolinux/linux26
214       cp /usr/lib/syslinux/chain.c32                                 "$BUILD_TARGET"/boot/isolinux/
215       cp /usr/lib/syslinux/isolinux.bin                              "$BUILD_TARGET"/boot/isolinux/
216       cp /usr/lib/syslinux/memdisk                                   "$BUILD_TARGET"/boot/isolinux/
217       cp /usr/lib/syslinux/menu.c32                                  "$BUILD_TARGET"/boot/isolinux/
218       cp /usr/share/grml-live/i386_files/boot/isolinux/allinone.img  "$BUILD_TARGET"/boot/isolinux/
219       cp /usr/share/grml-live/i386_files/boot/isolinux/balder10.imz  "$BUILD_TARGET"/boot/isolinux/
220       cp /usr/share/grml-live/i386_files/boot/isolinux/boot-beep.msg "$BUILD_TARGET"/boot/isolinux/
221       cp /usr/share/grml-live/i386_files/boot/isolinux/boot.msg      "$BUILD_TARGET"/boot/isolinux/
222       cp /usr/share/grml-live/i386_files/boot/isolinux/f*            "$BUILD_TARGET"/boot/isolinux/
223       cp /usr/share/grml-live/i386_files/boot/isolinux/isolinux.cfg  "$BUILD_TARGET"/boot/isolinux/
224       cp /usr/share/grml-live/i386_files/boot/isolinux/logo.16       "$BUILD_TARGET"/boot/isolinux/
225       cp /usr/share/grml-live/i386_files/boot/isolinux/syslinux.cfg  "$BUILD_TARGET"/boot/isolinux/
226       # autostart for Windows:
227       cp /usr/share/grml-live/windows/autostart/autorun.bat          "$BUILD_TARGET"/
228       cp /usr/share/grml-live/windows/autostart/autorun.inf          "$BUILD_TARGET"/
229       cp /usr/share/grml-live/windows/autostart/autorun.pif          "$BUILD_TARGET"/
230       cp /usr/share/grml-live/windows/autostart/cdrom.ico            "$BUILD_TARGET"/
231       # windows-binaries:
232       if [ -n "$WINDOWS_BINARIES" ] ; then
233          if [ -d "$BUILD_TARGET"/windows ] ; then
234             echo "  [x] $BUILD_TARGET/windows exists already - skipping stage 'WINDOWS_BINARIES'"
235             return 0
236          else
237             mkdir "$BUILD_TARGET"/windows
238             ( cd "$BUILD_TARGET"/windows
239               for file in pageant plink pscp psftp putty puttygen ; do
240                   wget ${WINDOWS_BINARIES}/${file}.exe
241               done )
242          fi
243       echo "  [*] Finished execution of stage 'WINDOWS_BINARIES'"
244       fi
245    echo "  [*] Finished execution of stage 'boot/isolinux'"
246    fi
247 # amd64:
248 elif [ "$ARCH" = amd64 ] ; then
249     echo 'Warning: gebi, it is your turn. :)'>&2
250 # ppc:
251 elif [ "$ARCH" = powerpc ] ; then
252     echo 'Warning: formorer, it is your turn. :)'>&2
253 # unsuported:
254 else
255    echo 'Warning: Unsupported ARCH, sorry. Want to support it? Contribute!'>&2
256 fi
257
258 if [ -d "$BUILD_TARGET"/live ] ; then
259    echo "  [x] $BUILD_TARGET/live exists already, skipping stage 'squashfs'"
260 else
261    mkdir "$BUILD_TARGET"/live
262    mksquashfs $CHROOT_TARGET/* $BUILD_TARGET/live/grml.squashfs -noappend
263 fi
264 echo "  [*] Finished execution of stage 'squashfs'"
265 # }}}
266
267 # ISO_TARGET - mkisofs {{{
268 [ -n "$ISO_TARGET" ] || ISO_TARGET="$TARGET/grml_isos"
269 if [ -d "$ISO_TARGET" ] ; then
270    echo "  [x] $ISO_TARGET exists already, skipping the stage 'iso build'"
271 else
272    mkdir -p "$ISO_TARGET" || bailout 6 "Problem with creating $ISO_TARGET for stage 'iso build'"
273    ( cd "$BUILD_TARGET" &&
274      mkisofs -V "Debian/etch grml" -publisher 'Michael Prokop <mika@grml.org>' \
275              -l -r -J -no-emul-boot -boot-load-size 4 -boot-info-table    \
276              -c boot/isolinux/boot.cat -b boot/isolinux/isolinux.bin      \
277              -o "$ISO_TARGET"/grml_0.0-1.iso .
278    )
279    echo "  [*] Finished execution of stage 'iso build'"
280 fi
281 # }}}
282
283 # finalize {{{
284 echo "  [*] Sucessfully finished execution of $PN"
285 bailout 0
286 # }}}
287
288 ## END OF FILE #################################################################
289 # vim:foldmethod=marker ts=2 ft=sh ai expandtab tw=80 sw=3