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