Fix groot and grub handling
[grml-debootstrap.git] / grml-debootstrap
1 #!/bin/sh
2 # Filename:      grml-bootstrap
3 # Purpose:       wrapper around debootstrap for installing plain Debian via grml
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.
7 # Latest change: Wed Aug 27 01:46:13 CEST 2008 [mika]
8 ################################################################################
9 # http://www.debian.org/releases/stable/i386/index.html.en
10
11 set -e # exit on any error
12
13 # variables {{{
14 PN="$(basename $0)"
15 VERSION='0.18'
16 MNTPOINT="/mnt/debootstrap.$$"
17
18 # inside the chroot system locales might not be available, so use minimum:
19 export LANG=C
20 export LC_ALL=C
21
22 # make sure interactive mode is only executed when
23 # using an empty configuration file or option --interactive
24 INTERACTIVE=''
25 # }}}
26
27 # source core functions {{{
28 . /etc/grml/lsb-functions
29 . /etc/grml/script-functions
30 # }}}
31
32 # help text {{{
33 usage() {
34   echo "$PN - wrapper around debootstrap for installing Debian
35
36 Usage: $PN [options]
37
38   -h|--help                   Print this usage information and exit.
39   -v|--version                Show summary of options and exit.
40
41   -c|--config <configfile>    Use specified configuration file,
42                               defaults to /etc/debootstrap/config
43   -i|--iso <mnt>              Mountpoint where a Debian ISO is mounted to,
44                               for use instead of fetching packages from a mirror
45   -m|--mirror <URL>           Mirror which should be used for apt-get/aptitude.
46   -p|--mntpoint <mnt>         Mountpoint used for mounting the target system.
47   -r|--release <release>      Release of new Debian system (default: stable)
48   -t|--target <target>        Target partition (/dev/...) or directory.
49
50   --boot_append <appendline>  Add specified appendline to kernel whilst booting
51   --groot <device>            Root device for usage in grub, corresponds with
52                               \$TARGET in grub syntax, like hd0,0 for /dev/sda1
53   --grub <device>             Target for grub installation. Use grub syntax
54                               for specifying, like hd0 for /dev/sda
55   --interactive               Use interactive mode (frontend)
56   --password <pwd>            Use specified password as password for user root.
57
58 Send bugreports to the grml-team: bugs@grml.org || http://grml.org/bugs/
59 "
60 }
61
62 if [ "$1" = '-h' ] || [ "$1" = '-help' ] ; then
63    usage
64    echo 'Please notice that this script requires root permissions!'
65    exit 0
66 fi
67 # }}}
68
69 # make sure we have what we need {{{
70 check4progs debootstrap dialog || exit 1
71 check4root || exit 1
72 # }}}
73
74 # source configuration file {{{
75 if [ -r /etc/debootstrap/config ] ; then
76    if [ -n "$CONFIGFILE" ] ; then
77       if ! . "$CONFIGFILE" ; then
78          eerror "Error reading config file $CONFIGFILE" ; eend 1 ; exit 1
79       fi
80    else
81       . /etc/debootstrap/config
82    fi
83 fi
84 # }}}
85
86 # cmdline handling {{{
87
88 while [ "$#" -gt "0" ] ; do
89     case $1 in
90         -c|--config)
91             shift
92             CONFIGFILE=$1
93             ;;
94         --grub)
95             shift
96             GRUB=$1
97             ;;
98         --groot)
99             shift
100             GROOT=$1
101             ;;
102         -h|--help)
103             usage ; eend 0
104             eend 0
105             exit 0
106             ;;
107         --interactive)
108             INTERACTIVE=1
109             ;;
110         -i|--iso)
111             shift
112             [ -n "$MIRROR" ] && unset MIRROR
113             ISO=$1
114             ;;
115         -m|--mirror)
116             shift
117             MIRROR=$1
118             CHROOTMIRROR=$1
119             ;;
120         -p|--mntpoint)
121             shift
122             MNTPOINT=$1
123             ;;
124         --password)
125             shift
126             ROOTPASSWORD=$1
127             ;;
128         -r|--release)
129             shift
130             RELEASE=$1
131             ;;
132         -t|--target)
133             shift
134             TARGET=$1
135             ;;
136         -v|--version)
137             einfo "$PN - version $VERSION"
138             einfo "Send bug reports to bugs@grml.org or http://grml.org/bugs/"
139             eend 0
140             exit 0
141             ;;
142         *)
143             eerror "Syntax error."
144             usage ; eend 1
145             exit 1
146             ;;
147     esac
148     shift
149 done
150 # }}}
151
152 # welcome screen {{{
153 welcome_dialog()
154 {
155    dialog --title "$PN" --msgbox "Welcome to the interactive configuration of grml-debootstrap." 0 0
156    # TODO: improve message
157 }
158 # }}}
159
160 # ask for target {{{
161 prompt_for_target()
162 {
163   AVAILABLE_PARTITIONS=$(LANG=C fdisk -l 2>/dev/null | \
164                sed 's/*//' | \
165                grep -v 'Extended$' | \
166                gawk -v num=0 -v ORS=' ' '/^\/dev\// {print $1}')
167
168   [ -n "$AVAILABLE_PARTITIONS" ] || echo "FIXME: no partitions available?"
169   PARTITION_LIST=$(for i in $(echo $AVAILABLE_PARTITIONS) ; do
170                        echo "$i $(vol_id --type $i 2>/dev/null || echo [no_filesystem_yet])"
171                    done)
172
173   TARGET=$(dialog --title "$PN" --single-quoted --stdout \
174          --menu "Please select the target partition:" 0 0 0 \
175          $PARTITION_LIST)
176 }
177 # }}}
178
179 # ask for bootmanager {{{
180 prompt_for_bootmanager()
181 {
182   ADDITIONAL_PARAMS=""
183   for device in sda hda; do
184     if [ /dev/$device != ${TARGET%[0-9]} ]; then
185       grep -q $device /proc/partitions && \
186       ADDITIONAL_PARAMS=:$device:"install bootmanager grub into MBR of /dev/${device}"
187     fi
188   done
189   ADDITIONAL_PARAMS=${ADDITIONAL_PARAMS#:}
190
191   OIFS="$IFS"; IFS=:
192
193   if echo $TARGET | grep -q "*md*" ; then
194      MBRPART=$TARGET
195   else
196      MBRPART="${TARGET%[0-9]}"
197   fi
198
199   GETMBR=$(dialog --stdout --title "$PN" --default-item mbr \
200           --menu "Where do you want to install the bootmanager grub?" 0 0 0 \
201             mbr       "install bootmanager into MBR of $MBRPART" \
202             partition "install bootmanager into partition $TARGET" \
203             nowhere   "do not install bootmanager at all" \
204           ${ADDITIONAL_PARAMS})
205   [ $? -eq 0 ] || bailout 3
206   IFS="$OIFS"
207
208   case "$GETMBR" in
209     mbr)
210       # /dev/md0: has to be installed in MBR of /dev/md0 and not in /dev/md:
211       if echo $TARGET | grep -q "*md*" ; then
212          BOOT_PARTITION="${TARGET}"
213       else
214          BOOT_PARTITION="${TARGET%[0-9]}"
215       fi
216       ;;
217     partition)
218       BOOT_PARTITION="$TARGET"
219       ;;
220     hda)
221       BOOT_PARTITION="/dev/hda"
222       ;;
223     sda)
224       BOOT_PARTITION="/dev/sda"
225       ;;
226     nowhere)
227       BOOT_PARTITION=''
228       ;;
229   esac
230 }
231 # }}}
232
233 # ask for Debian mirror {{{
234 prompt_for_mirror()
235 {
236   MIRROR="$(dialog --stdout --title "${PN}" --inputbox \
237             "Please enter Debian mirror you would like to use for installing packages." \
238             0 0 http://ftp.de.debian.org/debian)"
239 }
240 # }}}
241
242 # get grub's syntax for /dev/ice {{{
243 # usage example: 'grubdevice /dev/sda2' returns 'hd0,1'
244 grubdevice() {
245   if [ -z "$1" ] ; then
246      echo "Usage: grubdevice <device>">&2
247      return 1
248   fi
249
250   device="$1"
251   device_map=/boot/grub/device.map
252
253   # create device.map
254   if ! [ -f "$device_map" ] ; then
255      echo 'quit' | grub --device-map="$device_map" 1>/dev/null 2>&1
256   fi
257
258   # based on code from d-i's trunk/packages/arch/i386/grub-installer/grub-installer:
259   tmp_disk=`echo "$device" | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%' \
260                     -e 's%\(fd[0-9]*\)$%\1%' \
261                     -e 's%/part[0-9]*$%/disc%' \
262                     -e 's%\(c[0-7]d[0-9]*\).*$%\1%'`
263   tmp_part=`echo "$device" | sed -e 's%.*/[sh]d[a-z]\([0-9]*\)$%\1%' \
264                     -e 's%.*/fd[0-9]*$%%' \
265                     -e 's%.*/floppy/[0-9]*$%%' \
266                     -e 's%.*/\(disc\|part\([0-9]*\)\)$%\2%' \
267                     -e 's%.*c[0-7]d[0-9]*p*%%'`
268   tmp_drive=$(grep -v '^#' $device_map | grep "$tmp_disk *$" | sed 's%.*\([hf]d[0-9][a-g0-9,]*\).*%\1%')
269
270   case $1 in
271      /dev/[sh]d[a-z]) # we expect something like 'hd0'
272         echo "$tmp_drive"
273         ;;
274       *) # we expect something like 'hd0,0'
275         echo "$tmp_drive" | sed "s%$%,`expr $tmp_part - 1`%"
276         ;;
277   esac
278 }
279 # }}}
280
281 # interactive mode {{{
282 interactive_mode()
283 {
284   welcome_dialog
285   prompt_for_target
286   prompt_for_bootmanager
287   prompt_for_mirror
288
289   [ -n "$BOOT_PARTITION" ] && GRUB="$(grubdevice $BOOT_PARTITION)"
290   [ -n "$TARGET" ]         && GROOT="$(grubdevice $TARGET)"
291
292   # TODO
293   # ask for raid
294   # ask for lvm
295 }
296
297 # run interactive mode if we didn't get the according configuration yet
298 if [ -z "$TARGET" -o -n "$INTERACTIVE" ] ; then
299    interactive_mode
300 fi
301 # }}}
302
303 # finally make sure at least $TARGET is set [the partition for the new system] {{{
304 if [ -n "$TARGET" ] ; then
305    SHORT_TARGET="${TARGET##*/}"
306 else
307    eerror "Please adjust /etc/debootstrap/config or..."
308    eerror "... use the interactive version for configuration before running ${0}" ; eend 1
309    exit 1
310 fi
311 # }}}
312
313 # stages setup {{{
314 if [ -z "$STAGES" ] ; then
315    STAGES="/etc/debootstrap/stages_${SHORT_TARGET}"
316    [ -d "$STAGES" ] || mkdir -p "$STAGES"
317 fi
318
319 if [ -r "$STAGES"/grml-debootstrap ] ; then
320    if grep -q done $STAGES/grml-debootstrap ; then
321       eerror "Error: grml-debootstrap has been executed already, won't continue therefore."
322       eerror "If you want to re-execute grml-debootstrap just manually remove ${STAGES}" ; eend 1
323    fi
324 fi
325 # }}}
326
327 # partition handling {{{
328 PARTITION=''
329 DIRECTORY=''
330
331 case $TARGET in
332   /dev/*)
333     PARTITION=1
334     ;;
335   *)
336     # assume we are installing into a directory, don't run mkfs and grub related stuff therefore
337     DIRECTORY=1
338     MNTPOINT="$TARGET"
339     MKFS=''
340     TUNE2FS=''
341     FSCK=''
342     GRUB=''
343     GROOT=''
344     ;;
345 esac
346 # }}}
347
348 # architecture setup {{{
349 if [ -n "$ARCH" ] ; then
350    ARCHCMD="--arch $ARCH"
351    ARCHINFO=" (${ARCH})"
352 else
353    ARCH="$(dpkg --print-architecture)"
354    ARCHCMD="--arch $ARCH"
355    ARCHINFO=" (${ARCH})"
356 fi
357 # }}}
358
359 # make sure we have the right syntax when using an iso image {{{
360 if [ -n "$ISO" ] ; then
361    case $ISO in
362       file*) # do nothing
363       ;;
364       *)
365       ISO=file:$1
366       ;;
367    esac
368 fi
369 ISODIR=${ISO##file:}
370 ISODIR=${ISODIR%%/}
371 # }}}
372
373 # provide variables to chroot system {{{
374 CHROOT_VARIABLES="/etc/debootstrap/variables_${SHORT_TARGET}"
375 touch $CHROOT_VARIABLES
376 chmod 600 $CHROOT_VARIABLES # make sure nobody except root can read it
377 [ -n "$ARCH" ]   && echo "ARCH=$ARCH"     >  $CHROOT_VARIABLES
378 [ -n "$GRUB" ]   && echo "GRUB=$GRUB"     >> $CHROOT_VARIABLES
379 [ -n "$GROOT" ]  && echo "GROOT=$GROOT"   >> $CHROOT_VARIABLES
380 [ -n "$TARGET" ] && echo "TARGET=$TARGET" >> $CHROOT_VARIABLES
381 [ -n "$ISO" ]    && echo "ISO=$ISO"       >> $CHROOT_VARIABLES
382 [ -n "$ISODIR" ] && echo "ISODIR=$ISO"    >> $CHROOT_VARIABLES
383 [ -n "$MIRROR" ] && echo "MIRROR=$MIRROR" >> $CHROOT_VARIABLES
384 [ -n "$MIRROR" ] && echo "CHROOTMIRROR=$MIRROR" >> $CHROOT_VARIABLES
385 [ -n "$ROOTPASSWORD" ] && echo "ROOTPASSWORD=$ROOTPASSWORD" >> $CHROOT_VARIABLES
386 # }}}
387
388 # helper functions {{{
389 # we want to exit smoothly and clean:
390 bailout(){
391   # make sure $TARGET is not mounted when exiting grml-debootstrap
392   if [ -n "$MNTPOINT" ] ; then
393      if grep -q $MNTPOINT /proc/mounts ; then
394         # make sure nothing is left inside chroot so we can unmount it
395         [ -x "$MNTPOINT"/etc/init.d/ssh   ] && "$MNTPOINT"/etc/init.d/ssh stop
396         [ -x "$MNTPOINT"/etc/init.d/mdadm ] && "$MNTPOINT"/etc/init.d/mdadm stop
397         # ugly, but make sure we really don't leav anything
398         [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount /sys  1>/dev/null 2>&1
399         [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount -a    1>/dev/null 2>&1
400         [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount /proc 1>/dev/null 2>&1
401         [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount /proc 1>/dev/null 2>&1
402         [ -d "$MNTPOINT/$ISODIR" ]    && umount "$MNTPOINT/$ISODIR" 1>/dev/null 2>&1
403         einfo "Unmounting $MNTPOINT"   ; umount "$MNTPOINT" ; eend $?
404
405         # remove directory only if we used the default with process id inside the name
406         if echo "$MNTPOINT" | grep -q '/mnt/debootstrap\.' ; then
407            einfo "Removing directory ${MNTPOINT}" ; rmdir $MNTPOINT ; eend $?
408         fi
409      fi
410   fi
411
412   [ -n "$1" ] && EXIT="$1" || EXIT="1"
413   [ -n "$3" ] && einfo "Notice: just remove $STAGES/$3 to reexecute the stage"
414
415   exit "$EXIT"
416 }
417 trap bailout HUP INT QUIT TERM
418
419 # we want to execute all the functions only once, simple check for it:
420 stage() {
421   if [ -n "$2" ] ; then
422      echo "$2" > "${STAGES}/${1}"
423      return 0
424   elif grep -q done "${STAGES}/${1}" 2>/dev/null ; then
425      ewarn "Notice: stage $1 has been executed already, skipping execution therefore." ; eend 0
426      eindent
427        ewarn "To reexecute it clean up the according directory inside $STAGES" ; eend 0
428      eoutdent
429      return 1
430   fi
431 }
432 # }}}
433
434 # user should recheck his configuration {{{
435 # support full automatic installation:
436 checkforrun() {
437    dialog --timeout 10 --title "$PN" \
438           --yesno "Do you want to stop at this stage?
439
440 Notice: you are running grml-debootstrap in non-interactive mode.
441 grml-debootstrap will install Debian ${RELEASE} on ${TARGET}.
442 Last chance to quit. Timeout of 10 seconds running....
443
444 Do you want to stop now?" 0 0 2>/dev/null
445 }
446
447 if [ -n "$AUTOINSTALL" ] ; then
448    if checkforrun ; then
449       eerror "Exiting as requested" ; eend 0
450       exit 1
451    fi
452 else # if not running automatic installation display configuration and prompt for execution:
453    einfo "$PN - Please recheck configuration before execution:"
454    echo
455    echo "   Target:          $TARGET"
456       case "$MNTPOINT" in "$TARGET") ;; *) echo "   Mount point:     $MNTPOINT" ;; esac
457       [ -n "$GRUB" ]    && echo "   Install grub:    $GRUB" || echo "   Install grub:    no"
458       [ -n "$RELEASE" ] && echo "   Using release:   $RELEASE"
459       [ -n "$MIRROR" ]  && echo "   Using mirror:    $MIRROR"
460       [ -n "$ISO" ]     && echo "   Using iso:       $ISO"
461       case "$MNTPOINT" in "$TARGET") ;; *) echo "   Important! Continuing will delete all data from ${TARGET}!" ;; esac
462       echo
463    einfon "Is this ok for you? [y/N] "
464    read a
465    if ! [ "$a" = 'y' -o "$a" = 'Y' ] ; then
466       eerror "Exiting as requested." ; eend 1
467       exit 1
468    fi
469 fi
470 # }}}
471
472 # create filesystem {{{
473 mkfs() {
474   if [ -n "$MKFS" ] ; then
475      einfo "Running $MKFS on $TARGET"
476      $MKFS $TARGET
477      eend $?
478   fi
479 }
480 # }}}
481
482 # modify filesystem settings {{{
483 tunefs() {
484   if [ -n "$TUNE2FS" ] ; then
485      einfo "Disabling automatic filesystem check on $TARGET via tune2fs"
486      $TUNE2FS $TARGET
487      eend $?
488   fi
489 }
490 # }}}
491
492 # mount the new partition or if it's a directory do nothing at all {{{
493 mount_target() {
494   if [ -n "$DIRECTORY" ] ; then
495      einfo "Running grml-debootstrap on a directory, nothing to mount."
496   else
497      if grep -q $TARGET /proc/mounts ; then
498         eerror "$TARGET already mounted, exiting."
499      else
500        [ -d "$MNTPOINT" ] || mkdir -p "$MNTPOINT"
501        einfo "Mounting $TARGET to $MNTPOINT"
502        mount -o rw,suid,dev $TARGET $MNTPOINT
503        eend $?
504      fi
505   fi
506   if [ -n "$ISODIR" ] ; then
507      einfo "Mounting Debian image loopback to $MNTPOINT/$ISODIR."
508      mkdir -p "$MNTPOINT/$ISODIR"
509      mount --bind "$ISODIR" "$MNTPOINT/$ISODIR"
510      eend $?
511   fi
512 }
513 # }}}
514
515 # install main chroot {{{
516 debootstrap_system() {
517   if ! grep -q $MNTPOINT /proc/mounts ; then
518      mount_target
519   fi
520   if grep -q $MNTPOINT /proc/mounts ; then
521      einfo "Running $DEBOOTSTRAP for release ${RELEASE}${ARCHINFO} using ${MIRROR}${ISO}"
522      [ -n "$MIRROR" ] && $DEBOOTSTRAP $ARCHCMD $RELEASE $MNTPOINT $MIRROR || \
523      $DEBOOTSTRAP $ARCHCMD $RELEASE $MNTPOINT $ISO
524      eend $?
525   else
526      eerror "Error: $MNTPOINT not mounted, can not continue."
527      eend 1
528   fi
529 }
530 # }}}
531
532 # prepare chroot via chroot-script {{{
533 preparechroot() {
534   einfo "Preparing chroot system"
535   cp $CONFFILES/chroot-script $MNTPOINT/bin/chroot-script
536   chmod 755 $MNTPOINT/bin/chroot-script
537   mkdir $MNTPOINT/etc/debootstrap/
538
539   # make sure we have our files for later use via chroot-script
540   cp /etc/debootstrap/config    $MNTPOINT/etc/debootstrap/
541   cp /etc/debootstrap/packages  $MNTPOINT/etc/debootstrap/packages
542   cp $CHROOT_VARIABLES          $MNTPOINT/etc/debootstrap/variables # do NOT use $CHROOT_VARIABLES inside chroot!
543
544   cp -a /etc/debootstrap/extrapackages/ $MNTPOINT/etc/debootstrap/
545
546   # make sure we can access network [relevant for cdebootstrap]
547   [ -f "$MNTPOINT/etc/resolv.conf" ] || cp /etc/resolv.conf $MNTPOINT/etc/resolv.conf
548
549   # setup default locales
550   [ -n "$LOCALES" ] && cp /etc/debootstrap/locale.gen  $MNTPOINT/etc/locale.gen
551
552   # copy any existing existing files to chroot
553   [ -d /etc/debootstrap/boot  ] && cp -a /etc/debootstrap/boot/*  $MNTPOINT/boot/
554   [ -d /etc/debootstrap/etc   ] && cp -a /etc/debootstrap/etc/*   $MNTPOINT/etc/
555   [ -d /etc/debootstrap/share ] && cp -a /etc/debootstrap/share/* $MNTPOINT/share/
556   [ -d /etc/debootstrap/usr   ] && cp -a /etc/debootstrap/usr/*   $MNTPOINT/usr/
557   [ -d /etc/debootstrap/var   ] && cp -a /etc/debootstrap/var/*   $MNTPOINT/var/
558
559   # copy local network setup to chroot
560   if [ -r /etc/network/interfaces -a ! -r "${MNTPOINT}"/etc/network/interfaces ] ; then
561      [ -d $MNTPOINT/etc/network ] || mkdir $MNTPOINT/etc/network
562      cp /etc/network/interfaces $MNTPOINT/etc/network/interfaces
563   fi
564
565   eend 0
566 }
567 # }}}
568
569 # execute chroot-script {{{
570 chrootscript() {
571   if ! [ -r "$MNTPOINT/bin/chroot-script" ] ; then
572      mount_target
573   fi
574   if [ -x "$MNTPOINT/bin/chroot-script" ] ; then
575      einfo "Executing chroot-script now"
576      chroot "$MNTPOINT" /bin/chroot-script
577      eend $?
578   else
579      eerror "Fatal: $MNTPOINT/bin/chroot-script could not be found."
580      eend 1
581   fi
582 }
583 # }}}
584
585 # install booloader grub {{{
586 grub_install() {
587   if [ -z "$GRUB" -o -z "$GROOT" ] ; then
588      echo "Notice: \$GRUB or \$GROOT not defined, will not install grub therefor."
589   else
590      einfo "Installing grub on ${GRUB}:"
591      [ -x /usr/sbin/grub-install ] && GRUBINSTALL=/usr/sbin/grub-install || GRUBINSTALL=/sbin/grub-install
592      $GRUBINSTALL --root-directory="$MNTPOINT" "(${GRUB})"
593      eend $?
594   fi
595 }
596 # }}}
597
598 # unmount $MNTPOINRT {{{
599 umount_chroot() {
600   if [ -n "$ISODIR" ] ; then
601      if grep -q "$ISODIR" /proc/mounts ; then
602         einfo "Unmount $MNTPOINT/$ISODIR"
603         umount "$MNTPOINT/$ISODIR"
604         eend $?
605      fi
606   fi
607   if grep -q "$MNTPOINT" /proc/mounts ; then
608      if [ -n "$PARTITION" ] ; then
609         einfo "Unmount $MNTPOINT"
610         umount $MNTPOINT
611         eend $?
612      fi
613   fi
614 }
615 # }}}
616
617 # execute filesystem check {{{
618 fscktool() {
619   if [ "$FSCK" = 'yes' ] ; then
620      [ -n "$FSCKTOOL" ] || FSCKTOOL="fsck.${MKFS#mkfs.}"
621      einfo "Checking filesystem on $TARGET using $FSCKTOOL"
622      $FSCKTOOL $TARGET
623      eend $?
624   fi
625 }
626 # }}}
627
628 # now execute all the functions {{{
629 for i in mkfs tunefs mount_target debootstrap_system preparechroot \
630          chrootscript grub_install umount_chroot fscktool ; do
631     if stage "${i}" ; then
632        $i && stage "${i}" done || bailout 2 "i"
633     fi
634 done
635 # }}}
636
637 # stages {{{
638   echo done > $STAGES/grml-debootstrap
639 # }}}
640
641 # end dialog of autoinstallation {{{
642 if [ -n "$AUTOINSTALL" ] ; then
643    dialog --title "$PN" --msgbox \
644           "Finished execution of ${0}.
645 Enjoy your Debian system." 6 60
646 else
647    einfo "Finished execution of $PN - enjoy your Debian system." ; eend 0
648 fi
649 # }}}
650
651 ## END OF FILE #################################################################
652 # vim: ai tw=100 expandtab foldmethod=marker shiftwidth=3