8d31eb4e519cb0935c281887bd8ce0e371bf3592
[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 ################################################################################
8 # http://www.debian.org/releases/stable/i386/index.html.en
9
10 set -e # exit on any error
11
12 # variables {{{
13 PN="$(basename $0)"
14 VERSION='0.18'
15 MNTPOINT="/mnt/debootstrap.$$"
16
17 # inside the chroot system locales might not be available, so use minimum:
18 export LANG=C
19 export LC_ALL=C
20
21 # make sure interactive mode is only executed when
22 # using an empty configuration file or option --interactive
23 INTERACTIVE=''
24 # }}}
25
26 # source core functions {{{
27 . /etc/grml/lsb-functions
28 . /etc/grml/script-functions
29 # }}}
30
31 # help text {{{
32 usage() {
33   echo "$PN - wrapper around debootstrap for installing Debian
34
35 Usage: $PN [options]
36
37   -h|--help                   Print this usage information and exit.
38   -v|--version                Show summary of options and exit.
39
40   -c|--config <configfile>    Use specified configuration file,
41                               defaults to /etc/debootstrap/config
42   --hostname <hostname>       Hostname of Debian system
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         --hostname)
108             shift
109             HOSTNAME=$1
110             ;;
111         --interactive)
112             INTERACTIVE=1
113             ;;
114         -i|--iso)
115             shift
116             [ -n "$MIRROR" ] && unset MIRROR
117             ISO=$1
118             ;;
119         -m|--mirror)
120             shift
121             MIRROR=$1
122             CHROOTMIRROR=$1
123             ;;
124         -p|--mntpoint)
125             shift
126             MNTPOINT=$1
127             ;;
128         --password)
129             shift
130             ROOTPASSWORD=$1
131             ;;
132         -r|--release)
133             shift
134             RELEASE=$1
135             ;;
136         -t|--target)
137             shift
138             TARGET=$1
139             ;;
140         -v|--version)
141             einfo "$PN - version $VERSION"
142             einfo "Send bug reports to bugs@grml.org or http://grml.org/bugs/"
143             eend 0
144             exit 0
145             ;;
146         *)
147             eerror "Syntax error."
148             usage ; eend 1
149             exit 1
150             ;;
151     esac
152     shift
153 done
154 # }}}
155
156 # welcome screen {{{
157 welcome_dialog()
158 {
159    dialog --title "$PN" --yesno "Welcome to the interactive configuration of ${PN}.
160 Do you want to continue installing Debian using this frontend?" 0 0
161 }
162 # }}}
163
164 # ask for target {{{
165 prompt_for_target()
166 {
167   AVAILABLE_PARTITIONS=$(LANG=C fdisk -l 2>/dev/null | \
168                sed 's/*//' | \
169                grep -v 'Extended$' | \
170                gawk -v num=0 -v ORS=' ' '/^\/dev\// {print $1}')
171
172   [ -n "$AVAILABLE_PARTITIONS" ] || echo "FIXME: no partitions available?"
173   PARTITION_LIST=$(for i in $(echo $AVAILABLE_PARTITIONS) ; do
174                        echo "$i $(vol_id --type $i 2>/dev/null || echo [no_filesystem_yet])"
175                    done)
176
177   TARGET=$(dialog --title "$PN" --single-quoted --stdout \
178          --menu "Please select the target partition:" 0 0 0 \
179          $PARTITION_LIST)
180 }
181 # }}}
182
183 # ask for bootmanager {{{
184 prompt_for_bootmanager()
185 {
186   ADDITIONAL_PARAMS=""
187   for device in sda hda; do
188     if [ /dev/$device != ${TARGET%[0-9]} ]; then
189       grep -q $device /proc/partitions && \
190       ADDITIONAL_PARAMS=:$device:"install bootmanager grub into MBR of /dev/${device}"
191     fi
192   done
193   ADDITIONAL_PARAMS=${ADDITIONAL_PARAMS#:}
194
195   OIFS="$IFS"; IFS=:
196
197   if echo $TARGET | grep -q "/dev/md" ; then
198      MBRPART="all disks of Software RAID $TARGET"
199   else
200      MBRPART="MBR of ${TARGET%[0-9]}"
201   fi
202
203   GETMBR=$(dialog --stdout --title "$PN" --default-item mbr \
204           --menu "Where do you want to install the bootmanager grub?" 0 0 0 \
205             mbr       "install bootmanager into $MBRPART" \
206             partition "install bootmanager into partition $TARGET" \
207             nowhere   "do not install bootmanager at all" \
208           ${ADDITIONAL_PARAMS})
209   [ $? -eq 0 ] || bailout 3
210   IFS="$OIFS"
211
212   case "$GETMBR" in
213     mbr)
214       # /dev/md0: has to be installed in MBR of /dev/md0 and not in /dev/md:
215       if echo $TARGET | grep -q "*md*" ; then
216          BOOT_PARTITION="${TARGET}"
217       else
218          BOOT_PARTITION="${TARGET%[0-9]}"
219       fi
220       ;;
221     partition)
222       BOOT_PARTITION="$TARGET"
223       ;;
224     hda)
225       BOOT_PARTITION="/dev/hda"
226       ;;
227     sda)
228       BOOT_PARTITION="/dev/sda"
229       ;;
230     nowhere)
231       BOOT_PARTITION=''
232       ;;
233   esac
234 }
235 # }}}
236
237 # ask for Debian release {{{
238 prompt_for_release()
239 {
240   RELEASE="$(dialog --stdout --title "${PN}" --default-item etch --menu \
241             "Please enter the Debian release you would like to use for installation:" \
242             0 50 3 \
243             etch   Debian/stable \
244             lenny  Debian/testing \
245             sid    Debian/unstable)"
246 }
247 # }}}
248
249 # ask for hostname {{{
250 prompt_for_hostname()
251 {
252   HOSTNAME="$(dialog --stdout --title "${PN}" --inputbox \
253             "Please enter the hostname you would like to use for installation:" \
254             0 0 grml)"
255 }
256 # }}}
257
258 # ask for Debian mirror {{{
259 prompt_for_mirror()
260 {
261   MIRROR="$(dialog --stdout --title "${PN}" --inputbox \
262             "Please enter Debian mirror you would like to use for installing packages." \
263             0 0 http://ftp.de.debian.org/debian)"
264 }
265 # }}}
266
267 # get grub's syntax for /dev/ice {{{
268 # usage example: 'grubdevice /dev/sda2' returns 'hd0,1'
269 grubdevice() {
270   if [ -z "$1" ] ; then
271      echo "Usage: grubdevice <device>">&2
272      return 1
273   fi
274
275   device="$1"
276   device_map=/boot/grub/device.map
277
278   # create device.map
279   if ! [ -f "$device_map" ] ; then
280      echo 'quit' | grub --device-map="$device_map" 1>/dev/null 2>&1
281   fi
282
283   # based on code from d-i's trunk/packages/arch/i386/grub-installer/grub-installer:
284   tmp_disk=`echo "$device" | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%' \
285                     -e 's%\(fd[0-9]*\)$%\1%' \
286                     -e 's%/part[0-9]*$%/disc%' \
287                     -e 's%\(c[0-7]d[0-9]*\).*$%\1%'`
288   tmp_part=`echo "$device" | sed -e 's%.*/[sh]d[a-z]\([0-9]*\)$%\1%' \
289                     -e 's%.*/fd[0-9]*$%%' \
290                     -e 's%.*/floppy/[0-9]*$%%' \
291                     -e 's%.*/\(disc\|part\([0-9]*\)\)$%\2%' \
292                     -e 's%.*c[0-7]d[0-9]*p*%%'`
293   tmp_drive=$(grep -v '^#' $device_map | grep "$tmp_disk *$" | sed 's%.*\([hf]d[0-9][a-g0-9,]*\).*%\1%')
294
295   case $1 in
296      /dev/[sh]d[a-z]) # we expect something like 'hd0'
297         echo "$tmp_drive"
298         ;;
299       *) # we expect something like 'hd0,0'
300         echo "$tmp_drive" | sed "s%$%,`expr $tmp_part - 1`%" # FIXME => md0
301         ;;
302   esac
303 }
304 # }}}
305
306 # software raid setup {{{
307 config_swraid_setup()
308 {
309 TMPFILE=$(mktemp)
310
311 # Currently we support only raid1:
312 RAIDLEVEL='raid1'
313
314 #RAIDLEVEL=$(dialog --stdout --title "$PN" --default-item raid1 \
315 #                   --menu "Which RAID level do you want to use?" 0 0 0 \
316 #                     raid1 "Software RAID level 1" \
317 #                     raid5 "Software RAID level 5")
318 #[ $? -eq 0 ] || bailout 20
319
320 MD_LIST=$(for i in $(seq 0 9) ; do
321             awk '{print $4}' /proc/partitions | grep -q md$i || \
322             echo "/dev/md$i /dev/md$i"
323           done)
324
325 TARGET=$(dialog --stdout --title "$PN" --default-item /dev/md0 \
326 --menu "Which device do you want to use for ${RAIDLEVEL}?
327
328 Notice: activated devices will not be listed for security reasons. Anyway, please make sure the selected device is not in use already!" 0 0 0 \
329 $MD_LIST)
330 [ $? -eq 0 ] || bailout 20
331
332 AVAILABLE_PARTITIONS=$(LANG=C fdisk -l 2>/dev/null | \
333              sed 's/*//' | \
334              grep -v 'Extended$' | \
335              gawk -v num=0 -v ORS=' ' '/^\/dev\// {print $1}')
336 [ -n "$AVAILABLE_PARTITIONS" ] || echo "FIXME: no partitions available?"
337 PARTITION_LIST=$(for i in $(echo $AVAILABLE_PARTITIONS) ; do
338                      echo "$i $(vol_id --type $i 2>/dev/null || echo [no_filesystem_yet]) off"
339                  done)
340
341 dialog --title "$PN" \
342        --single-quoted \
343        --checklist "Please select the partitions you would like to use for your $RAIDLEVEL on ${TARGET}:" 0 0 0 \
344        $PARTITION_LIST 2>$TMPFILE
345 RETVAL=$?
346 SELECTED_PARTITIONS="$(cat $TMPFILE)"
347
348 NUM_PARTITIONS=0
349 for i in $(cat $TMPFILE) ; do
350    NUM_PARTITIONS=$((${NUM_PARTITIONS}+1))
351 done
352
353 ERRORFILE=$(mktemp)
354 set +e
355 # TODO: better error handling?
356 yes | mdadm --create "${TARGET}" --level="${RAIDLEVEL}" \
357       --raid-devices="${NUM_PARTITIONS}" ${SELECTED_PARTITIONS} 1>/dev/null 2>$ERRORFILE
358 RC=$?
359 set -e
360
361 if [ "$RC" = 0 ] ; then
362    dialog --title "$PN" --msgbox \
363    "Creating $TARGET was successful." 0 0
364    rm -f "$TMPFILE" "$ERRORFILE"
365 else
366    dialog --title "$PN" --msgbox \
367    "There was an error setting up $TARGET:
368
369 $(cat $ERRORFILE)
370
371 Exiting." 0 0
372    rm -f "$TMPFILE" "$ERRORFILE"
373    exit 1
374 fi
375
376 }
377
378 prompt_for_swraid()
379 {
380 if dialog --stdout --title "$PN" \
381           --defaultno --yesno "Do you want to configure Software RAID?
382
383 Please notice that only RAID level 1 is supported by ${PN} currently. Configuration will take place using mdadm." 0 0 ; then
384   config_swraid_setup
385 fi
386 }
387 # }}}
388
389 # make sure the user is aware of the used configuration {{{
390 checkconfiguration()
391 {
392 if [ -n "$AUTOINSTALL" ] ; then
393    if checkforrun ; then
394       eerror "Exiting as requested" ; eend 0
395       exit 1
396    fi
397 elif [ -n "$INTERACTIVE" ] ; then
398
399    INFOTEXT="Please recheck configuration before execution:
400    "
401    [ -n "$TARGET" ]  && INFOTEXT="$INFOTEXT
402    Target:          $TARGET"
403    [ -n "$GRUB" ]    && INFOTEXT="$INFOTEXT
404    Install grub:    $GRUB"
405    [ -n "$RELEASE" ] && INFOTEXT="$INFOTEXT
406    Using release:   $RELEASE"
407    [ -n "$HOSTNAME" ] && INFOTEXT="$INFOTEXT
408    Using hostname   $HOSTNAME"
409    [ -n "$MIRROR" ]  && INFOTEXT="$INFOTEXT
410    Using mirror:    $MIRROR"
411
412    INFOTEXT="$INFOTEXT
413
414 Is this ok for you? Notice: selecting 'No' will exit ${PN}."
415
416    dialog --title "$PN" --no-collapse \
417           --yesno "$INFOTEXT" 0 0
418
419 else # if not running automatic installation display configuration and prompt for execution:
420    einfo "$PN - Please recheck configuration before execution:"
421    echo
422    echo "   Target:          $TARGET"
423       case "$MNTPOINT" in "$TARGET") ;; *) echo "   Mount point:     $MNTPOINT" ;; esac
424       [ -n "$GRUB" ]    && echo "   Install grub:    $GRUB" || echo "   Install grub:    no"
425       [ -n "$RELEASE" ] && echo "   Using release:   $RELEASE"
426       [ -n "$MIRROR" ]  && echo "   Using mirror:    $MIRROR"
427       [ -n "$ISO" ]     && echo "   Using iso:       $ISO"
428       case "$MNTPOINT" in "$TARGET") ;; *) echo "   Important! Continuing will delete all data from ${TARGET}!" ;; esac
429       echo
430    einfon "Is this ok for you? [y/N] "
431    read a
432    if ! [ "$a" = 'y' -o "$a" = 'Y' ] ; then
433       eerror "Exiting as requested." ; eend 1
434       exit 1
435    fi
436 fi
437 }
438 # }}}
439
440 # interactive mode {{{
441 interactive_mode()
442 {
443   welcome_dialog
444
445   prompt_for_swraid
446
447   # do not prompt for partition dialog if swraid has been configured already
448   [ -n "$TARGET" ] || prompt_for_target
449
450   prompt_for_bootmanager
451
452   prompt_for_release
453
454   prompt_for_hostname
455
456   # use first disk of sw-raid for grub by default, install grub on
457   # all involved disks later on
458   if echo "$TARGET" | grep -q '/dev/md' ; then
459      if [ -n "$SELECTED_PARTITIONS" ] ; then # using sw-raid
460         # use hdX and not hdX,Y for $GRUB
461         TMPDEVICE=$(echo ${SELECTED_PARTITIONS} | awk '{print $1}') # use first disk only
462         GRUB="$(grubdevice ${TMPDEVICE%%[0-9]})" # like: hd0
463         GROOT="$(grubdevice ${TMPDEVICE})"       # like: hd0,0
464         echo "debug: GRUB = $GRUB - GROOT = $GROOT" >/tmp/debug # FIXME
465      fi
466   else
467      [ -n "$BOOT_PARTITION" ] && GRUB="$(grubdevice $BOOT_PARTITION)"
468      [ -n "$TARGET" ]         && GROOT="$(grubdevice $TARGET)"
469   fi
470
471   prompt_for_mirror
472
473   checkconfiguration
474 }
475
476 # run interactive mode if we didn't get the according configuration yet
477 if [ -z "$TARGET" -o -n "$INTERACTIVE" ] ; then
478    # only target might be unset, so make sure the INTERACTIVE flag is set as well
479    INTERACTIVE=1
480    interactive_mode
481 fi
482 # }}}
483
484 # finally make sure at least $TARGET is set [the partition for the new system] {{{
485 if [ -n "$TARGET" ] ; then
486    SHORT_TARGET="${TARGET##*/}"
487 else
488    eerror "Please adjust /etc/debootstrap/config or..."
489    eerror "... use the interactive version for configuration before running ${0}" ; eend 1
490    exit 1
491 fi
492 # }}}
493
494 # stages setup {{{
495 if [ -z "$STAGES" ] ; then
496    STAGES="/var/cache/grml-debootstrap/stages_${SHORT_TARGET}"
497    [ -d "$STAGES" ] || mkdir -p "$STAGES"
498 fi
499
500 if [ -r "$STAGES"/grml-debootstrap ] ; then
501    if grep -q done $STAGES/grml-debootstrap ; then
502       eerror "Error: grml-debootstrap has been executed already, won't continue therefore."
503       eerror "If you want to re-execute grml-debootstrap just manually remove ${STAGES}" ; eend 1
504    fi
505 fi
506 # }}}
507
508 # partition handling {{{
509 PARTITION=''
510 DIRECTORY=''
511
512 case $TARGET in
513   /dev/*)
514     PARTITION=1
515     ;;
516   *)
517     # assume we are installing into a directory, don't run mkfs and grub related stuff therefore
518     DIRECTORY=1
519     MNTPOINT="$TARGET"
520     MKFS=''
521     TUNE2FS=''
522     FSCK=''
523     GRUB=''
524     GROOT=''
525     ;;
526 esac
527 # }}}
528
529 # architecture setup {{{
530 if [ -n "$ARCH" ] ; then
531    ARCHCMD="--arch $ARCH"
532    ARCHINFO=" (${ARCH})"
533 else
534    ARCH="$(dpkg --print-architecture)"
535    ARCHCMD="--arch $ARCH"
536    ARCHINFO=" (${ARCH})"
537 fi
538 # }}}
539
540 # make sure we have the right syntax when using an iso image {{{
541 if [ -n "$ISO" ] ; then
542    case $ISO in
543       file*) # do nothing
544       ;;
545       *)
546       ISO=file:$1
547       ;;
548    esac
549 fi
550 ISODIR=${ISO##file:}
551 ISODIR=${ISODIR%%/}
552 # }}}
553
554 # provide variables to chroot system {{{
555 CHROOT_VARIABLES="/var/cache/grml-debootstrap/variables_${SHORT_TARGET}"
556 touch $CHROOT_VARIABLES
557 chmod 600 $CHROOT_VARIABLES # make sure nobody except root can read it
558 [ -n "$ARCH" ]   && echo "ARCH=$ARCH"     >  $CHROOT_VARIABLES
559 [ -n "$GRUB" ]   && echo "GRUB=$GRUB"     >> $CHROOT_VARIABLES
560 [ -n "$GROOT" ]  && echo "GROOT=$GROOT"   >> $CHROOT_VARIABLES
561 [ -n "$TARGET" ] && echo "TARGET=$TARGET" >> $CHROOT_VARIABLES
562 [ -n "$ISO" ]    && echo "ISO=$ISO"       >> $CHROOT_VARIABLES
563 [ -n "$ISODIR" ] && echo "ISODIR=$ISO"    >> $CHROOT_VARIABLES
564 [ -n "$MIRROR" ] && echo "MIRROR=$MIRROR" >> $CHROOT_VARIABLES
565 [ -n "$MIRROR" ] && echo "CHROOTMIRROR=$MIRROR" >> $CHROOT_VARIABLES
566 [ -n "$ROOTPASSWORD" ] && echo "ROOTPASSWORD=$ROOTPASSWORD" >> $CHROOT_VARIABLES
567 # }}}
568
569 # helper functions {{{
570 # we want to exit smoothly and clean:
571 bailout(){
572   # make sure $TARGET is not mounted when exiting grml-debootstrap
573   if [ -n "$MNTPOINT" ] ; then
574      if grep -q $MNTPOINT /proc/mounts ; then
575         # make sure nothing is left inside chroot so we can unmount it
576         [ -x "$MNTPOINT"/etc/init.d/ssh   ] && "$MNTPOINT"/etc/init.d/ssh stop
577         [ -x "$MNTPOINT"/etc/init.d/mdadm ] && "$MNTPOINT"/etc/init.d/mdadm stop
578         # ugly, but make sure we really don't leav anything
579         [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount /sys  1>/dev/null 2>&1
580         [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount -a    1>/dev/null 2>&1
581         [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount /proc 1>/dev/null 2>&1
582         [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount /proc 1>/dev/null 2>&1
583         [ -d "$MNTPOINT/$ISODIR" ]    && umount "$MNTPOINT/$ISODIR" 1>/dev/null 2>&1
584         einfo "Unmounting $MNTPOINT"   ; umount "$MNTPOINT" ; eend $?
585
586         if [ -n "$STAGES" ] ; then
587            echo -n "Removing stages directory ${STAGES}: "
588            rm -rf "$STAGES" && echo done
589         fi
590
591         # remove directory only if we used the default with process id inside the name
592         if echo "$MNTPOINT" | grep -q '/mnt/debootstrap\.' ; then
593            einfo "Removing directory ${MNTPOINT}" ; rmdir $MNTPOINT ; eend $?
594         fi
595      fi
596   fi
597
598   [ -n "$1" ] && EXIT="$1" || EXIT="1"
599   [ -n "$3" ] && einfo "Notice: just remove $STAGES/$3 to reexecute the stage"
600
601   exit "$EXIT"
602 }
603 trap bailout HUP INT QUIT TERM
604
605 # we want to execute all the functions only once, simple check for it:
606 stage() {
607   if [ -n "$2" ] ; then
608      echo "$2" > "${STAGES}/${1}"
609      return 0
610   elif grep -q done "${STAGES}/${1}" 2>/dev/null ; then
611      ewarn "Notice: stage $1 has been executed already, skipping execution therefore." ; eend 0
612      eindent
613        ewarn "To reexecute it clean up the according directory inside $STAGES" ; eend 0
614      eoutdent
615      return 1
616   fi
617 }
618 # }}}
619
620 # user should recheck his configuration {{{
621 # support full automatic installation:
622 checkforrun() {
623    dialog --timeout 10 --title "$PN" \
624           --yesno "Do you want to stop at this stage?
625
626 Notice: you are running ${PN} in non-interactive mode.
627 ${PN} will install Debian ${RELEASE} on ${TARGET}.
628 Last chance to quit. Timeout of 10 seconds running....
629
630 Do you want to stop now?" 0 0 2>/dev/null
631 }
632
633 # create filesystem {{{
634 mkfs() {
635   if [ -n "$MKFS" ] ; then
636      einfo "Running $MKFS on $TARGET"
637      $MKFS $TARGET
638      eend $?
639   fi
640 }
641 # }}}
642
643 # modify filesystem settings {{{
644 tunefs() {
645   if [ -n "$TUNE2FS" ] ; then
646      einfo "Disabling automatic filesystem check on $TARGET via tune2fs"
647      $TUNE2FS $TARGET
648      eend $?
649   fi
650 }
651 # }}}
652
653 # mount the new partition or if it's a directory do nothing at all {{{
654 mount_target() {
655   if [ -n "$DIRECTORY" ] ; then
656      einfo "Running grml-debootstrap on a directory, nothing to mount."
657   else
658      if grep -q $TARGET /proc/mounts ; then
659         eerror "$TARGET already mounted, exiting."
660      else
661        [ -d "$MNTPOINT" ] || mkdir -p "$MNTPOINT"
662        einfo "Mounting $TARGET to $MNTPOINT"
663        mount -o rw,suid,dev $TARGET $MNTPOINT
664        eend $?
665      fi
666   fi
667   if [ -n "$ISODIR" ] ; then
668      einfo "Mounting Debian image loopback to $MNTPOINT/$ISODIR."
669      mkdir -p "$MNTPOINT/$ISODIR"
670      mount --bind "$ISODIR" "$MNTPOINT/$ISODIR"
671      eend $?
672   fi
673 }
674 # }}}
675
676 # install main chroot {{{
677 debootstrap_system() {
678   if ! grep -q $MNTPOINT /proc/mounts ; then
679      mount_target
680   fi
681   if grep -q $MNTPOINT /proc/mounts ; then
682      einfo "Running $DEBOOTSTRAP for release ${RELEASE}${ARCHINFO} using ${MIRROR}${ISO}"
683      [ -n "$MIRROR" ] && $DEBOOTSTRAP $ARCHCMD $RELEASE $MNTPOINT $MIRROR || \
684      $DEBOOTSTRAP $ARCHCMD $RELEASE $MNTPOINT $ISO
685      eend $?
686   else
687      eerror "Error: $MNTPOINT not mounted, can not continue."
688      eend 1
689   fi
690 }
691 # }}}
692
693 # prepare chroot via chroot-script {{{
694 preparechroot() {
695   einfo "Preparing chroot system"
696   cp $CONFFILES/chroot-script $MNTPOINT/bin/chroot-script
697   chmod 755 $MNTPOINT/bin/chroot-script
698   mkdir $MNTPOINT/etc/debootstrap/
699
700   # make sure we have our files for later use via chroot-script
701   cp /etc/debootstrap/config    $MNTPOINT/etc/debootstrap/
702   # make sure we adjust the configuration variables accordingly:
703   sed -i "s#RELEASE=.*#RELEASE=\"$RELEASE\"#" $MNTPOINT/etc/debootstrap/config
704   sed -i "s#TARGET=.*#TARGET=\"$TARGET\"#"    $MNTPOINT/etc/debootstrap/config
705   sed -i "s#GRUB=.*#GRUB=\"$GRUB\"#"          $MNTPOINT/etc/debootstrap/config
706   sed -i "s#GROOT=.*#GROOT=\"$GROOT\"#"       $MNTPOINT/etc/debootstrap/config
707
708   cp /etc/debootstrap/packages  $MNTPOINT/etc/debootstrap/packages
709
710   # notice: do NOT use $CHROOT_VARIABLES inside chroot but statically file instead!
711   cp $CHROOT_VARIABLES          $MNTPOINT/etc/debootstrap/variables
712
713   cp -a /etc/debootstrap/extrapackages/ $MNTPOINT/etc/debootstrap/
714
715   # make sure we can access network [relevant for cdebootstrap]
716   [ -f "$MNTPOINT/etc/resolv.conf" ] || cp /etc/resolv.conf $MNTPOINT/etc/resolv.conf
717
718   # provide system's /etc/hosts to the target:
719   if ! [ -f "$MNTPOINT/etc/hosts" ] ; then
720      cp /etc/hosts $MNTPOINT/etc/hosts
721      sed -i "s#127.0.0.1 .*#127.0.0.1       localhost  $HOSTNAME#" /etc/hosts
722   fi
723
724   # setup default locales
725   [ -n "$LOCALES" ] && cp /etc/debootstrap/locale.gen  $MNTPOINT/etc/locale.gen
726
727   # MAKEDEV is just a forking bomb crap, let's do it on our own instead :)
728   ( cd $MNTPOINT/dev && tar zxf /etc/debootstrap/devices.tar.gz )
729
730   # copy any existing existing files to chroot
731   [ -d /etc/debootstrap/boot  ] && cp -a /etc/debootstrap/boot/*  $MNTPOINT/boot/
732   [ -d /etc/debootstrap/etc   ] && cp -a /etc/debootstrap/etc/*   $MNTPOINT/etc/
733   [ -d /etc/debootstrap/share ] && cp -a /etc/debootstrap/share/* $MNTPOINT/share/
734   [ -d /etc/debootstrap/usr   ] && cp -a /etc/debootstrap/usr/*   $MNTPOINT/usr/
735   [ -d /etc/debootstrap/var   ] && cp -a /etc/debootstrap/var/*   $MNTPOINT/var/
736
737   # copy local network setup to chroot
738   if [ -r /etc/network/interfaces -a ! -r "${MNTPOINT}"/etc/network/interfaces ] ; then
739      [ -d $MNTPOINT/etc/network ] || mkdir $MNTPOINT/etc/network
740      cp /etc/network/interfaces $MNTPOINT/etc/network/interfaces
741   fi
742
743   eend 0
744 }
745 # }}}
746
747 # execute chroot-script {{{
748 chrootscript() {
749   if ! [ -r "$MNTPOINT/bin/chroot-script" ] ; then
750      mount_target
751   fi
752   if [ -x "$MNTPOINT/bin/chroot-script" ] ; then
753      einfo "Executing chroot-script now"
754      chroot "$MNTPOINT" /bin/chroot-script
755      eend $?
756   else
757      eerror "Fatal: $MNTPOINT/bin/chroot-script could not be found."
758      eend 1
759   fi
760 }
761 # }}}
762
763 # install booloader grub {{{
764 grub_install() {
765   if [ -z "$GRUB" -o -z "$GROOT" ] ; then
766      echo "Notice: \$GRUB or \$GROOT not defined, will not install grub therefor."
767   elif [ -n "$SELECTED_PARTITIONS" ] ; then # using sw-raid
768      for device in $SELECTED_PARTITIONS ; do
769         # TMPDEVICE=$(echo ${SELECTED_PARTITIONS} | awk '{print $1}')
770         # GRUB="$(grubdevice ${TMPDEVICE})"
771         # GRUB="$(grubdevice ${TMPDEVICE%%[0-9]})"
772         # GRUB=$(grubdevice $device)
773         GRUB="$(grubdevice ${device%%[0-9]})"
774         einfo "Installing grub on ${GRUB}:"
775         [ -x /usr/sbin/grub-install ] && GRUBINSTALL="/usr/sbin/grub-install --no-floppy" || GRUBINSTALL="/sbin/grub-install --no-floppy"
776         $GRUBINSTALL --root-directory="$MNTPOINT" "(${GRUB})"
777         eend $?
778      done
779   else
780      einfo "Installing grub on ${GRUB}:"
781      [ -x /usr/sbin/grub-install ] && GRUBINSTALL="/usr/sbin/grub-install --no-floppy" || GRUBINSTALL="/sbin/grub-install --no-floppy"
782      $GRUBINSTALL --root-directory="$MNTPOINT" "(${GRUB})"
783      eend $?
784   fi
785 }
786 # }}}
787
788 # unmount $MNTPOINRT {{{
789 umount_chroot() {
790   if [ -n "$ISODIR" ] ; then
791      if grep -q "$ISODIR" /proc/mounts ; then
792         einfo "Unmount $MNTPOINT/$ISODIR"
793         umount "$MNTPOINT/$ISODIR"
794         eend $?
795      fi
796   fi
797   if grep -q "$MNTPOINT" /proc/mounts ; then
798      if [ -n "$PARTITION" ] ; then
799         einfo "Unmount $MNTPOINT"
800         umount $MNTPOINT
801         eend $?
802      fi
803   fi
804 }
805 # }}}
806
807 # execute filesystem check {{{
808 fscktool() {
809   if [ "$FSCK" = 'yes' ] ; then
810      [ -n "$FSCKTOOL" ] || FSCKTOOL="fsck.${MKFS#mkfs.}"
811      einfo "Checking filesystem on $TARGET using $FSCKTOOL"
812      $FSCKTOOL $TARGET
813      eend $?
814   fi
815 }
816 # }}}
817
818 # now execute all the functions {{{
819 for i in mkfs tunefs mount_target debootstrap_system preparechroot \
820          chrootscript grub_install umount_chroot fscktool ; do
821     if stage "${i}" ; then
822        $i && ( stage "${i}" done && rm -f "${STAGES}/${i}" ) || bailout 2 "i"
823     fi
824 done
825 # }}}
826
827 # finalize {{{
828 einfo "Removing ${CHROOT_VARIABLES}" ; rm "$CHROOT_VARIABLES" ; eend $?
829 einfo "Removing ${STAGES}" ; rmdir "$STAGES" ; eend $?
830
831 # Remove temporary mountpoint again
832 if echo "$MNTPOINT" | grep -q '/mnt/debootstrap\.' ; then
833    einfo "Removing directory ${MNTPOINT}" ; rmdir "$MNTPOINT" ; eend $?
834 fi
835 # }}}
836
837 # end dialog of autoinstallation {{{
838 if [ -n "$AUTOINSTALL" ] ; then
839    dialog --title "$PN" --msgbox \
840           "Finished execution of ${PN}. Enjoy your Debian system." 0 0
841 else
842    einfo "Finished execution of ${PN}. Enjoy your Debian system." ; eend 0
843 fi
844 # }}}
845
846 ## END OF FILE #################################################################
847 # vim: ai tw=100 expandtab foldmethod=marker shiftwidth=3