improved amd64 on i386 build attempt bailout msg
[grml-debootstrap.git] / grml-debootstrap
1 #!/bin/bash
2 # Filename:      grml-debootstrap
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
9 # error_handler {{{
10 [ -n "$REPORT_TRAP_ERR" ] || REPORT_TRAP_ERR='no'
11 [ -n "$FAIL_TRAP_ERR" ] || FAIL_TRAP_ERR='no'
12
13 error_handler() {
14    last_exit_code="$?"
15    last_bash_command="$BASH_COMMAND"
16    if [ "$REPORT_TRAP_ERR" = "yes" ]; then
17       echo "Unexpected non-zero exit code $last_exit_code in $BASH_SOURCE at line $BASH_LINENO detected!
18 last bash command: $last_bash_command"
19    fi
20    if [ ! "$FAIL_TRAP_ERR" = "yes" ]; then
21       return
22    fi
23    ## Check if "bailout" function is available.
24    ## This is not the case in chroot-script.
25    if command -v bailout >/dev/null 2>&1; then
26       bailout 1
27    else
28       echo 'FAIL_TRAP_ERR is set to "yes", exit 1.'
29       exit 1
30    fi
31 }
32
33 if [ "$REPORT_TRAP_ERR" = "yes" ] || [ "$FAIL_TRAP_ERR" = "yes" ]; then
34    set -E
35    set -o pipefail
36    trap "error_handler" ERR
37    export -f "error_handler"
38 fi
39 # }}}
40
41 # variables {{{
42 PN="$(basename "$0")"
43 if [[ -d "$(dirname "$(which "$0")")"/.git ]]; then
44   VERSION="$(git describe | sed 's|^v||')"
45 else
46   VERSION="$(dpkg-query --show --showformat='${Version}' "$PN")"
47 fi
48 VERSION="${VERSION:-unknown}"
49 MNTPOINT="/mnt/debootstrap.$$"
50
51 # defaults
52 [ -n "$CHROOT_SCRIPTS" ] || CHROOT_SCRIPTS='yes'
53 [ -n "$CONFFILES" ] || CONFFILES='/etc/debootstrap'
54 [ -n "$DEBCONF" ] || DEBCONF='yes'
55 [ -n "$DEBIAN_FRONTEND" ] || DEBIAN_FRONTEND='noninteractive'
56 [ -n "$DEBOOTSTRAP" ] || DEBOOTSTRAP='debootstrap'
57 [ -n "$DEFAULT_LANGUAGE" ] || DEFAULT_LANGUAGE='en_US:en'
58 [ -n "$DEFAULT_LOCALES" ] || DEFAULT_LOCALES='en_US.UTF-8'
59 [ -n "$DISK_IDENTIFIER" ] || DISK_IDENTIFIER='26ada0c0-1165-4098-884d-aafd2220c2c6'
60 [ -n "$EXTRAPACKAGES" ] || EXTRAPACKAGES='yes'
61 [ -n "$FALLBACK_MIRROR" ] || FALLBACK_MIRROR='http://httpredir.debian.org/debian'
62 [ -n "$FIXED_DISK_IDENTIFIERS" ] || FIXED_DISK_IDENTIFIERS="no"
63 [ -n "$FORCE" ] || FORCE=''
64 [ -n "$HOSTNAME" ] || HOSTNAME='grml'
65 [ -n "$INITRD" ] || INITRD='yes'
66 [ -n "$INSTALL_NOTES" ] || INSTALL_NOTES='/etc/debootstrap/install_notes'
67 [ -n "$LOCALES" ] || LOCALES='yes'
68 [ -n "$MIRROR" ] || MIRROR="$FALLBACK_MIRROR"
69 [ -n "$MKFS" ] || MKFS='mkfs.ext4'
70 [ -n "$MKFS_OPTS" ] || MKFS_OPTS=''
71 [ -n "$PACKAGES" ] || PACKAGES='yes'
72 [ -n "$POST_SCRIPTS" ] || POST_SCRIPTS='yes'
73 [ -n "$PRE_SCRIPTS" ] || PRE_SCRIPTS='yes'
74 [ -n "$RECONFIGURE" ] || RECONFIGURE='console-data'
75 [ -n "$RELEASE" ] || RELEASE='jessie'
76 [ -n "$RM_APTCACHE" ] || RM_APTCACHE='yes'
77 [ -n "$SCRIPTS" ] || SCRIPTS='no' # deprecated, replaced by POST_SCRIPTS
78 [ -n "$SECURE" ] || SECURE='yes'
79 [ -n "$TIMEZONE" ] || TIMEZONE='Europe/Vienna'
80 [ -n "$TUNE2FS" ] || TUNE2FS='tune2fs -c0 -i0'
81 [ -n "$UPGRADE_SYSTEM" ] || UPGRADE_SYSTEM='yes'
82 [ -n "$VMSIZE" ] || VMSIZE="2G"
83
84 # inside the chroot system locales might not be available, so use minimum:
85 export LANG=C
86 export LC_ALL=C
87 export LANGUAGE=C
88
89 # make sure interactive mode is only executed when
90 # using an empty configuration file or option --interactive
91 INTERACTIVE=''
92 # }}}
93
94 # help text {{{
95 usage() {
96   echo "$PN - wrapper around debootstrap for installing Debian
97
98 Usage: $PN [options]
99
100 Bootstrap options:
101
102   -m, --mirror <URL>     Mirror which should be used for apt-get/aptitude.
103   -i, --iso <mnt>        Mountpoint where a Debian ISO is mounted to, for use
104                          instead of fetching packages from a mirror.
105   -r, --release <name>   Release of new Debian system (default: jessie).
106   -t, --target <target>  Target partition (/dev/...) or directory where the
107                          system should be installed to.
108   -p, --mntpoint <mnt>   Mountpoint used for mounting the target system,
109                          has no effect if -t is given and represents a directory.
110       --debopt <params>  Extra parameters passed to the debootstrap command.
111       --interactive      Use interactive mode (frontend).
112       --nodebootstrap    Skip debootstrap, only do configuration to the target.
113       --grub <device>    Target for grub installation. Usage example: /dev/sda
114       --arch <arch>      Set target architecture, use for installing i386 on amd64.
115       --filesystem <fs>  Filesystem that should be used when target is a partition
116                          or Virtual Machine (see --vmfile).
117       --force            Do not prompt for user acknowledgement.
118
119 Options for Virtual Machine deployment:
120
121       --vm               Set up a Virtual Machine on an existing block device
122                          instead of plainly installing to a partition or
123                          directory. Needs to be combined with --target.
124                          Example: --vm --target /dev/mapper/your-vm-disk
125       --vmfile           Like --vm, but install into a regular file (created by
126                          'qemu-img create -f raw ...') instead.
127                          Example: --vmfile --target /mnt/sda1/qemu.img
128       --vmsize <size>    Use specified size for size of VM file (default: 2G).
129                          Syntax as supported by qemu-img, like: --vmsize 3G
130
131 Configuration options:
132
133   -c, --config <file>      Use specified configuration file, defaults to
134                              /etc/debootstrap/config
135   -d, --confdir <path>     Place of config files for debootstrap, defaults
136                              to /etc/debootstrap
137       --packages <file>    Install packages defined in specified list file
138                              instead of using /etc/debootstrap/packages.
139       --nopackages         Skip installation of packages defined in
140                              /etc/debootstrap/packages
141       --nokernel           Skip installation of default kernel images.
142       --nointerfaces       Do not copy /etc/network/interfaces from host system
143                            to target system.
144                            (This option is automatically enabled when using --vmfile.)
145       --defaultinterfaces  Install a default /etc/network/interfaces file (enabling
146                            DHCP for eth0) instead of taking over config from host system.
147       --debconf <file>     Pre-seed packages using specified pre-seed db file.
148       --grmlrepos          Enable Grml's Debian repository (deb.grml.org).
149       --backportrepos      Enable Debian's backports repository (backports.debian.org).
150       --keep_src_list      Do not overwrite user provided apt sources.list.
151       --contrib            Enable 'contrib' in COMPONENTS (defaults to 'main' only).
152       --non-free           Enable non-free in COMPONENTS (defaults to 'main' only).
153       --hostname <name>    Hostname of Debian system.
154       --nopassword         Do not prompt for the root password.
155       --password <pwd>     Use specified password as password for user root.
156       --bootappend <line>  Add specified appendline to kernel whilst booting.
157       --chroot-scripts <d> Execute chroot scripts from specified directory.
158       --pre-scripts <dir>  Execute scripts from specified directory (before chroot-scripts).
159       --scripts <dir>      Execute scripts from specified directory (after chroot-scripts).
160       --remove-configs     Delete grml-debootstrap configuration files from installed system.
161
162 Other options:
163
164   -v, --verbose            Increase verbosity.
165       --debug              Execute in very verbose way.
166   -h, --help               Print this usage information and exit.
167   -V, --version            Show summary of options and exit.
168
169 Usage examples can be found in the grml-debootstrap manpage.
170 Send bugreports to the grml-team: bugs (at) grml.org || http://grml.org/bugs/
171 "
172 }
173
174 if [ "$1" = '-h' ] || [ "$1" = '-help' ] || [ "$1" = "--help" ] ; then
175    usage
176    echo 'Please notice that this script requires root permissions!'
177    exit 0
178 fi
179 # }}}
180
181 # early helper functions {{{
182 GOOD='\e[32;01m'
183 BAD='\e[31;01m'
184 WARN='\e[33;01m'
185 NORMAL='\e[0m'
186
187 einfo() {
188   einfon "$1\n"
189   return 0
190 }
191
192 einfon() {
193   [ "${RC_ENDCOL}" != "yes" ] && [ "${LAST_E_CMD}" = "ebegin" ] && echo
194   printf " ${GOOD}*${NORMAL} $*"
195   LAST_E_CMD=einfon
196   return 0
197 }
198
199 ewarn() {
200   printf " ${WARN}*${NORMAL} $*\n"
201   return 0
202 }
203
204 eerror() {
205   [ "${RC_ENDCOL}" != "yes" ] && [ "${LAST_E_CMD}" = "ebegin" ] && echo
206   printf " ${BAD}*${NORMAL} $*\n" >&2
207   LAST_E_CMD=eerror
208   return 0
209 }
210
211 eend() {
212   local retval="${1:-0}"
213   shift
214   if [ "$retval" -gt 0 ]; then
215     printf " ${BAD}-> Failed (rc=${retval})${NORMAL}\n"
216   fi
217   return "$retval"
218 }
219
220 check4root(){
221   if [ "$(id -u 2>/dev/null)" != 0 ] ; then
222     echo 1>&2 "Error: please run this script with uid 0 (root)." ; return 1
223   fi
224 }
225
226 check4progs(){
227   local RC=''
228   for arg in "$@" ; do
229     which "$arg" >/dev/null 2>&1 || RC="$arg"
230   done
231   if [ -n "$RC" ] ; then
232      echo "$RC not installed"
233      return 1
234   fi
235 }
236 # }}}
237
238 # helper functions {{{
239 cleanup() {
240   if [ -n "$CHROOT_VARIABLES" ] ; then
241     einfo "Removing ${CHROOT_VARIABLES}" ; rm "$CHROOT_VARIABLES" ; eend $?
242   fi
243
244   if [ -n "$STAGES" ] ; then
245     einfo "Removing ${STAGES}" ; rmdir "$STAGES" ; eend $?
246   fi
247
248   # Remove temporary mountpoint again
249   if echo "$MNTPOINT" | grep -q '/mnt/debootstrap\.' ; then
250     rmdir "$MNTPOINT" 2>/dev/null
251   fi
252
253   # make sure $TARGET is not mounted when exiting grml-debootstrap
254   if [ -n "$MNTPOINT" ] ; then
255     if grep -q "$MNTPOINT" /proc/mounts ; then
256       # make sure nothing is left inside chroot so we can unmount it
257       for service in ssh mdadm ; do
258         if [ -x "${MNTPOINT}/etc/init.d/${service}" ] ; then
259           chroot "$MNTPOINT" "/etc/init.d/${service}" stop
260         fi
261       done
262
263       [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount -a >/dev/null 2>&1
264
265       # ugly, but make sure we really don't leave anything (/proc /proc and
266       # /dev /dev are intended, trying to work around timing issues, see #657023)
267       for ARG in /sys /proc /proc /dev/pts /dev/pts /dev /dev ; do
268         [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount $ARG >/dev/null 2>&1
269         umount "$MNTPOINT"/$ARG >/dev/null 2>&1
270       done
271
272       if [ -n "$ISODIR" ] ; then
273         [ -d "$MNTPOINT/$ISODIR" ] && umount "$MNTPOINT/$ISODIR" >/dev/null 2>&1
274       fi
275
276       if [ -n "$DIRECTORY" ] ; then
277         einfo "Not unmounting $MNTPOINT as you requested me to install into a directory of your own choice." ; eend 0
278       else
279         einfo "Unmounting $MNTPOINT"
280         umount "$MNTPOINT"
281         eend $?
282       fi
283
284       if [ -n "$STAGES" ] ; then
285         echo -n "Removing stages directory ${STAGES}: "
286         rm -rf "$STAGES" && echo 'done'
287       fi
288
289       # remove directory only if we used the default with process id inside the name
290       if echo "$MNTPOINT" | grep -q '/mnt/debootstrap\.' ; then
291         einfo "Removing directory ${MNTPOINT}"
292         rmdir "$MNTPOINT"
293         eend $?
294       fi
295     fi
296   fi
297
298   if [ -n "${ORIG_TARGET}" ] ; then
299     einfo "Removing loopback mount of file ${ORIG_TARGET}."
300     kpartx -d "${ORIG_TARGET}" ; eend $?
301   fi
302 }
303
304 # we want to exit smoothly and clean:
305 bailout(){
306
307   cleanup
308
309   [ -n "$1" ] && EXIT="$1" || EXIT="1"
310   [ -n "$2" ] && einfo "Notice: remove $STAGES/$2 to reexecute the stage"
311
312   exit "$EXIT"
313 }
314 trap bailout HUP INT QUIT TERM
315
316 # we want to execute all the functions only once, simple check for it:
317 stage() {
318   if [ -n "$2" ] ; then
319      echo "$2" > "${STAGES}/${1}"
320      return 0
321   elif grep -q 'done' "${STAGES}/${1}" 2>/dev/null ; then
322      ewarn "Notice: stage $1 has been executed already, skipping execution therefore." ; eend 0
323      ewarn "  To reexecute it clean up the according directory inside $STAGES" ; eend 0
324      return 1
325   fi
326 }
327 # }}}
328
329 # make sure we have what we need {{{
330 check4progs debootstrap || bailout 1
331 # }}}
332
333 # source main configuration file {{{
334 if [ -r /etc/debootstrap/config ] ; then
335   . /etc/debootstrap/config
336 fi
337 # }}}
338
339 # cmdline handling {{{
340 # source external command line parameter-processing script
341 self_dir="$(dirname "$(which "$0")")"
342 if [ -r "${self_dir}"/cmdlineopts.clp ] ; then
343    . "${self_dir}"/cmdlineopts.clp
344 elif [ -r /usr/share/grml-debootstrap/functions/cmdlineopts.clp ] ; then
345    . /usr/share/grml-debootstrap/functions/cmdlineopts.clp
346 else
347    eerror "Error: cmdline function file not found, exiting."
348    eend 1
349    bailout 1
350 fi
351
352 # == business-logic of command line parameter-processing
353
354 # source configuration file in <confdir> if supplied. {{{
355 [ "$_opt_confdir" ] && {
356   CONFFILES=$_opt_confdir
357   einfo "Using config files under $CONFFILES/."
358   if ! [ -r "$CONFFILES/config" ] ; then
359     eerror "Error: config file $CONFFILES/config not found."; eend 1; bailout 1
360   fi
361   if ! . "$CONFFILES/config" ; then
362     eerror "Error reading config file $CONFFILES/config" ; eend 1 ; bailout 1
363   fi
364   # restore the command line parameter value
365   CONFFILES=$_opt_confdir
366 }
367 # }}}
368
369 [ "$_opt_mirror" ]              && MIRROR=$_opt_mirror
370 [ "$_opt_iso" ]                 && ISO=$_opt_iso
371 [ "$_opt_release" ]             && RELEASE=$_opt_release
372 [ "$_opt_target" ]              && TARGET=$_opt_target
373 [ "$_opt_vm" ]                  && VIRTUAL=1
374 [ "$_opt_vmfile" ]              && VMFILE=1 && VIRTUAL=1
375 [ "$_opt_vmsize" ]              && VMSIZE=$_opt_vmsize
376 [ "$_opt_mntpoint" ]            && MNTPOINT=$_opt_mntpoint
377 [ "$_opt_debopt" ]              && DEBOOTSTRAP_OPT=$_opt_debopt
378 [ "$_opt_interactive" ]         && INTERACTIVE=1
379 [ "$_opt_config" ]              && CONFIGFILE=$_opt_config
380 [ "$_opt_filesystem" ]          && MKFS="mkfs.$_opt_filesystem"
381 [ "$_opt_packages_set" ]        && PACKAGES='yes'
382 [ "$_opt_nopackages" ]          && PACKAGES=''
383 [ "$_opt_debconf_set" ]         && DEBCONF='yes'
384 [ "$_opt_post_scripts_set" ]    && POST_SCRIPTS='yes'
385 [ "$_opt_pre_scripts_set" ]     && PRE_SCRIPTS='yes'
386 [ "$_opt_chroot_scripts_set" ]  && CHROOT_SCRIPTS='yes'
387 [ "$_opt_keep_src_list" ]       && KEEP_SRC_LIST='yes'
388 [ "$_opt_grmlrepos" ]           && GRMLREPOS='yes'
389 [ "$_opt_backportrepos" ]       && BACKPORTREPOS='yes'
390 [ "$_opt_hostname" ]            && HOSTNAME=$_opt_hostname
391 [ "$_opt_password" ]            && ROOTPASSWORD=$_opt_password
392 [ "$_opt_nopassword" ]          && NOPASSWORD='yes'
393 [ "$_opt_defaultinterfaces" ]   && USE_DEFAULT_INTERFACES="true"
394 [ "$_opt_nointerfaces" ]        && NOINTERFACES="true"
395 [ "$_opt_nokernel" ]            && NOKERNEL="true"
396 [ "$_opt_bootappend" ]          && BOOT_APPEND=$_opt_bootappend
397 [ "$_opt_grub" ]                && GRUB=$_opt_grub
398 [ "$_opt_arch" ]                && ARCH=$_opt_arch
399 [ "$_opt_insecure" ]            && echo "Warning: --insecure is deprecated, continuing anyway."
400 [ "$_opt_force" ]               && FORCE=$_opt_force
401 [ "$_opt_verbose" ]             && VERBOSE="-v"
402 [ "$_opt_debug" ]               && DEBUG="true"
403 [ "$_opt_remove_configs" ]      && REMOVE_CONFIGS="yes"
404
405 # make sure main is always included
406 [ -z "$COMPONENTS" ]            && COMPONENTS="main"
407 [ "$_opt_contrib" ]             && COMPONENTS="$COMPONENTS contrib"
408 [ "$_opt_non_free" ]            && COMPONENTS="$COMPONENTS non-free"
409
410 # command line option checks
411 if [ "$_opt_scripts_set" ] ; then
412   ewarn "Deprecation NOTE: --scripts option is deprecated, please switch to --post-scripts instead."
413   SCRIPTS='yes' # deprecated since grml-debootstrap >=0.71
414 fi
415
416 if [ "$_opt_grub" ] && [ "$_opt_vmfile" ] ; then
417   eerror "The --grub option is incompatible with --vmfile, please drop it from your command line."
418   eerror "The --grub option is unneeded as GRUB will be installed automatically."
419   eend 1
420   bailout 1
421 fi
422
423
424 if [ "$DEBUG" = "true" ] ; then
425   set -x
426 fi
427
428 [ "$_opt_help" ] && {
429   usage ; eend 0
430   eend 0
431   exit 0
432 }
433
434 [ "$_opt_version" ] && {
435   einfo "$PN - version $VERSION"
436   einfo "Send bug reports to bugs@grml.org or http://grml.org/bugs/"
437   eend 0
438   exit 0
439 }
440 # }}}
441
442 # check for root permissions {{{
443 if ! check4root ; then
444    echo "For usage instructions please execute '$PN --help'."
445    bailout 1
446 fi
447 # }}}
448
449 # make sure we have what we need {{{
450 if [ -n "$VIRTUAL" ] ; then
451   check4progs kpartx mksh parted qemu-img || bailout 1
452 fi
453 # }}}
454
455 # source specified configuration file {{{
456 if [ -n "$CONFIGFILE" ] ; then
457    einfo "Reading specified config file $CONFIGFILE."
458    if ! . "$CONFIGFILE" ; then
459       eerror "Error reading config file $CONFIGFILE" ; eend 1 ; bailout 1
460    fi
461 fi
462 # }}}
463
464 # backwards compability checks {{{
465 if [ -n "$GROOT" ] ; then
466    eerror "Error: you seem to have \$GROOT configured."
467    eerror "This variable is no longer supported, please visit the"
468    eerror "grml-debootstrap documentation for details."
469    eend 1
470    bailout 1
471 fi
472
473 if echo "$GRUB" | grep -q '^hd' ; then
474    eerror "Error: this syntax for the grub configuration variable is no longer supported."
475    eerror "Please do not use hd... any longer but /dev/sdX instead."
476    eend 1
477    bailout 1
478 fi
479 # }}}
480
481 # welcome screen {{{
482 welcome_dialog()
483 {
484    dialog --title "$PN" --yesno "Welcome to the interactive configuration of ${PN}.
485 Do you want to continue installing Debian using this frontend?" 0 0 || bailout 0
486 }
487 # }}}
488
489 # ask for target {{{
490 prompt_for_target()
491 {
492   AVAILABLE_PARTITIONS=$(LANG=C fdisk -l 2>/dev/null | \
493                sed 's/*//' | \
494                grep -v 'Extended$' | \
495                gawk -v num=0 -v ORS=' ' '/^\/dev\// {print $1}'; ls /dev/md[0-9]* 2>/dev/null || true);
496
497   if [ -z "$AVAILABLE_PARTITIONS" ] ; then
498      dialog --title "$PN" --trim \
499      --msgbox "Sorry, no partitions found. Please configure your
500      harddisks (see /proc/partitions) using a tool like fdisk,
501      cfdisk, gpart, gparted,..." 0 0
502      bailout 1
503   fi
504
505   PARTITION_LIST=$(for i in $AVAILABLE_PARTITIONS ; do
506                      fs="$(blkid -s TYPE -o value "$i" 2>/dev/null)"
507                      [ -n "$fs" ] || fs='[no_filesystem_yet]'
508                      echo "$i" "$fs"
509                      unset fs
510                    done)
511
512   TARGET=$(dialog --title "$PN" --single-quoted --stdout \
513          --menu "Please select the target partition:" 0 0 0 \
514          $PARTITION_LIST)
515   [ $? -eq 0 ] || bailout 1
516 }
517 # }}}
518
519 # ask for bootmanager {{{
520 prompt_for_bootmanager()
521 {
522   ADDITIONAL_PARAMS=""
523
524   if echo "$TARGET" | grep -q "/dev/md" ; then
525      MBRPART="all disks of Software RAID $TARGET"
526   else
527      # figure out whole disk device
528      found=
529      for device in /dev/disk/by-id/*
530      do
531         [ "$(readlink -f "$device")" = "${TARGET}" ] || continue
532         found=1
533         break
534      done
535      [ -n "$found" ] && MBRDISK=$(echo "${device}" |sed -e 's/-part[0-9][0-9]*$//')
536      if [ -e "$MBRDISK" ]; then
537         MBRDISK=$(readlink -f "$MBRDISK")
538      else
539         # fall back to old behaviour
540         MBRDISK=$(echo "${TARGET}" | sed -e 's/[0-9][0-9]*$//')
541      fi
542
543      MBRPART="MBR of $MBRDISK"
544   fi
545
546   for device in cciss/c0d0 sda hda; do
547     if [ "/dev/$device" != "${MBRDISK}" ]; then
548       grep -q $device /proc/partitions && \
549       ADDITIONAL_PARAMS="$ADDITIONAL_PARAMS:$device:install bootmanager grub into MBR of /dev/$device"
550     fi
551   done
552   ADDITIONAL_PARAMS=${ADDITIONAL_PARAMS#:}
553
554   OIFS="$IFS"; IFS=:
555
556   GETMBR=$(dialog --stdout --title "$PN" --default-item mbr \
557           --menu "Where do you want to install the bootmanager grub?" 0 0 0 \
558             mbr       "install bootmanager into $MBRPART" \
559             nowhere   "do not install bootmanager at all" \
560           ${ADDITIONAL_PARAMS})
561   [ $? -eq 0 ] || bailout 3
562   IFS="$OIFS"
563
564   case "$GETMBR" in
565     mbr)
566       # /dev/md0: has to be installed in MBR of /dev/md0 and not in /dev/md:
567       if echo "$TARGET" | grep -q "/dev/md" ; then
568         GRUB="$TARGET"
569       else
570         GRUB="$MBRDISK"
571       fi
572       ;;
573     hda)
574       GRUB="/dev/hda"
575       ;;
576     sda)
577       GRUB="/dev/sda"
578       ;;
579     nowhere)
580       GRUB=''
581       ;;
582   esac
583 }
584 # }}}
585
586 # ask for Debian release {{{
587 prompt_for_release()
588 {
589   [ -n "$RELEASE" ] && DEFAULT_RELEASE="$RELEASE" || DEFAULT_RELEASE='jessie'
590   RELEASE="$(dialog --stdout --title "${PN}" --default-item $DEFAULT_RELEASE --menu \
591             "Please enter the Debian release you would like to use for installation:" \
592             0 50 5 \
593             lenny    Debian/5.0 \
594             squeeze  Debian/6.0 \
595             wheezy   Debian/7.0 \
596             jessie   Debian/8.0 \
597             stretch  Debian/9.0 \
598             sid      Debian/unstable)"
599   [ $? -eq 0 ] || bailout
600 }
601 # }}}
602
603 # ask for hostname {{{
604 prompt_for_hostname()
605 {
606   HOSTNAME="$(dialog --stdout --title "${PN}" --inputbox \
607             "Please enter the hostname you would like to use for installation:" \
608             0 0 "$HOSTNAME")"
609   [ $? -eq 0 ] || bailout
610 }
611 # }}}
612
613 # ask for password {{{
614 prompt_for_password()
615 {
616   if [ "$_opt_nopassword" ] ; then
617     einfo "Skip asking for root password as requested."
618     return 0
619   fi
620
621   ROOTPW1='PW1'
622   ROOTPW2='PW2'
623   while [ "$ROOTPW1" != "$ROOTPW2" ]; do
624     ROOTPW1=$(dialog --insecure --stdout --title "${PN}" --passwordbox \
625     "Please enter the password for the root account:" 10 60)
626     [ $? -eq 0 ] || bailout
627
628     ROOTPW2=$(dialog --insecure --stdout --title "${PN}" --passwordbox \
629     "Please enter the password for the root account again for \
630     confirmation:" 10 60)
631     [ $? -eq 0 ] || bailout
632
633     if [ "$ROOTPW1" != "$ROOTPW2" ]; then
634       dialog --stdout --title "${PN}" --ok-label \
635         "Retry" --msgbox "Passwords do not match!" 10 60
636     fi
637   done
638   ROOTPASSWORD="$ROOTPW1"
639 }
640 # }}}
641
642 # ask for Debian mirror {{{
643 prompt_for_mirror()
644 {
645   [ -n "$ISO" ] && DEFAULT_MIRROR='local' || DEFAULT_MIRROR='net'
646
647   CHOOSE_MIRROR=$(dialog --stdout --title "$PN" --default-item $DEFAULT_MIRROR \
648           --menu "Where do you want to install from?" 0 0 0 \
649             net   "install via network (downloading from mirror)" \
650             local "install from local directory/mirror"
651           )
652   [ $? -eq 0 ] || bailout
653
654   if [ "$CHOOSE_MIRROR" = 'net' ] ; then
655      [ -n "$MIRROR" ] || MIRROR='http://httpredir.debian.org/debian'
656      MIRROR="$(dialog --stdout --title "${PN}" --inputbox \
657                "Please enter Debian mirror you would like to use for installing packages." \
658                0 0 $MIRROR)"
659      [ $? -eq 0 ] || bailout
660   else # CHOOSE_MIRROR == local
661      [ -n "$ISO" ] || ISO='/mnt/mirror'
662      ISO="$(dialog --stdout --title "${PN}" --inputbox \
663                "Please enter directory name you would like to use for installing packages." \
664                0 0 $ISO)"
665      [ $? -eq 0 ] || bailout
666   fi
667 }
668 # }}}
669
670 # software raid setup {{{
671 config_swraid_setup()
672 {
673 TMPFILE=$(mktemp)
674
675 # Currently we support only raid1:
676 RAIDLEVEL='raid1'
677
678 MD_LIST=$(for i in $(seq 0 9) ; do
679             awk '{print $4}' /proc/partitions | grep -q "md$i" || \
680             echo "/dev/md$i /dev/md$i"
681           done)
682
683 TARGET=$(dialog --stdout --title "$PN" --default-item /dev/md0 \
684 --menu "Which device do you want to use for ${RAIDLEVEL}?
685
686 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 \
687 $MD_LIST)
688 [ $? -eq 0 ] || bailout 20
689
690 AVAILABLE_PARTITIONS=$(LANG=C fdisk -l 2>/dev/null | \
691              sed 's/*//' | \
692              grep -v 'Extended$' | \
693              gawk -v num=0 -v ORS=' ' '/^\/dev\// {print $1}')
694 [ -n "$AVAILABLE_PARTITIONS" ] || echo "Fatal error: no partitions available?"
695 PARTITION_LIST=$(for i in $AVAILABLE_PARTITIONS ; do
696                      echo "$i $(blkid -s TYPE -o value "$i" 2>/dev/null || echo '[no_filesystem_yet]') off"
697                  done)
698
699 dialog --title "$PN" --separate-output \
700        --checklist "Please select the partitions you would like to use for your $RAIDLEVEL on ${TARGET}:" 0 0 0 \
701        $PARTITION_LIST 2>"$TMPFILE"
702 [ $? -eq 0 ] || bailout
703 SELECTED_PARTITIONS="$(cat "$TMPFILE")"
704
705 NUM_PARTITIONS=0
706 for i in $(cat "$TMPFILE") ; do
707    NUM_PARTITIONS=$(( NUM_PARTITIONS + 1 ))
708 done
709
710 # force metadata version 0.90 for lenny so old grub can boot from this array.
711 METADATA_VERSION=""
712 if [ "$RELEASE" = "lenny" ]; then
713    METADATA_VERSION="-e0"
714 fi
715
716 ERRORFILE=$(mktemp)
717 yes | mdadm --create "${TARGET}" --level="${RAIDLEVEL}" \
718       --raid-devices="${NUM_PARTITIONS}" ${METADATA_VERSION} ${SELECTED_PARTITIONS} >/dev/null 2>$ERRORFILE
719 RC=$?
720 if [ "$RC" = 0 ] ; then
721    dialog --title "$PN" --msgbox \
722    "Creating $TARGET was successful." 0 0
723    rm -f "$TMPFILE" "$ERRORFILE"
724 else
725    dialog --title "$PN" --msgbox \
726    "There was an error setting up $TARGET:
727
728 $(cat "$ERRORFILE")
729
730 Exiting." 0 0
731    rm -f "$TMPFILE" "$ERRORFILE"
732    bailout 1
733 fi
734
735 }
736
737 prompt_for_swraid()
738 {
739 if dialog --stdout --title "$PN" \
740           --defaultno --yesno "Do you want to configure Software RAID?
741
742 Please notice that only RAID level 1 is supported by ${PN} currently. Configuration will take place using mdadm." 0 0 ; then
743   config_swraid_setup
744 fi
745 }
746 # }}}
747
748 # user should recheck his configuration {{{
749 # support full automatic installation:
750 checkforrun() {
751    dialog --timeout 10 --title "$PN" \
752           --yesno "Do you want to stop at this stage?
753
754 Notice: you are running ${PN} in non-interactive mode.
755 ${PN} will install Debian ${RELEASE} on ${TARGET}.
756 Last chance to quit. Timeout of 10 seconds running....
757
758 Do you want to stop now?" 0 0 2>/dev/null
759 }
760 # }}}
761
762 # make sure the user is aware of the used configuration {{{
763 checkconfiguration()
764 {
765 if [ -n "$AUTOINSTALL" ] ; then
766    if checkforrun ; then
767       eerror "Exiting as requested" ; eend 0
768       bailout 1
769    fi
770 elif [ -n "$INTERACTIVE" ] ; then
771
772    INFOTEXT="Please recheck configuration before execution:
773    "
774    [ -n "$TARGET" ]  && INFOTEXT="$INFOTEXT
775    Target:          $TARGET"
776    [ -n "$GRUB" ]    && INFOTEXT="$INFOTEXT
777    Install grub:    $GRUB"
778    [ -n "$RELEASE" ] && INFOTEXT="$INFOTEXT
779    Using release:   $RELEASE"
780    [ -n "$HOSTNAME" ] && INFOTEXT="$INFOTEXT
781    Using hostname:  $HOSTNAME"
782    [ -n "$MIRROR" ]  && INFOTEXT="$INFOTEXT
783    Using mirror:    $MIRROR"
784    [ -n "$ISO" ]  && INFOTEXT="$INFOTEXT
785    Using ISO:       $ISO"
786    [ -n "$ARCH" ]  && INFOTEXT="$INFOTEXT
787    Using arch:      $ARCH"
788    [ -n "$CONFFILES" ] && INFOTEXT="$INFOTEXT
789    Config files:    $CONFFILES"
790
791    INFOTEXT="$INFOTEXT
792
793 Is this ok for you? Notice: selecting 'No' will exit ${PN}."
794
795    dialog --title "$PN" --no-collapse \
796           --yesno "$INFOTEXT" 0 0
797    [ $? -eq 0 ] || bailout 0
798
799 else # if not running automatic installation display configuration and prompt for execution:
800    einfo "$PN [${VERSION}] - Please recheck configuration before execution:"
801    echo
802    echo "   Target:          $TARGET"
803
804    # do not display if MNTPOINT is the default one
805    case "$MNTPOINT" in /mnt/debootstrap*) ;; *) echo "   Mount point:     $MNTPOINT" ;; esac
806
807    if [ -n "$VIRTUAL" ] ; then
808       echo "   Install grub:    yes"
809    else
810      [ -n "$GRUB" ]     && echo "   Install grub:    $GRUB" || echo "   Install grub:    no"
811    fi
812
813    [ -n "$RELEASE" ]   && echo "   Using release:   $RELEASE"
814    [ -n "$HOSTNAME" ]  && echo "   Using hostname:  $HOSTNAME"
815    [ -n "$MIRROR" ]    && echo "   Using mirror:    $MIRROR"
816    [ -n "$ISO" ]       && echo "   Using ISO:       $ISO"
817    [ -n "$ARCH" ]      && echo "   Using arch:      $ARCH"
818    [ -n "$CONFFILES" ] && echo "   Config files:    $CONFFILES"
819    if [ -n "$VIRTUAL" ] ; then
820       echo "   Deploying as Virtual Machine."
821       if [ -n "$VMSIZE" -a -n "$VMFILE" ]; then
822          echo "   Using Virtual Disk file with size of ${VMSIZE}."
823       fi
824    fi
825
826    if [ ! -t 0 -a -z "$ROOTPASSWORD" -a -z "$NOPASSWORD" ] ; then
827       echo
828       echo "   You do not have a TTY allocated, your password will be shown in"
829       echo "   plaintext on the terminal! If you are using SSH, try its -t option!"
830    fi
831
832    echo
833    echo "   Important! Continuing will delete all data from ${TARGET}!"
834
835    if [ -n "$FORCE" ] ; then
836      einfo "Skip user acknowledgement as requested via --force option."
837    else
838      echo
839      einfon "Is this ok for you? [y/N] "
840      read a
841      if ! [ "$a" = 'y' -o "$a" = 'Y' ] ; then
842         eerror "Exiting as requested." ; eend 1
843         bailout 1
844      fi
845    fi
846 fi
847 }
848 # }}}
849
850 # interactive mode {{{
851 interactive_mode()
852 {
853   check4progs dialog || bailout 1
854
855   welcome_dialog
856
857   prompt_for_release
858
859   prompt_for_swraid
860
861   prompt_for_target
862
863   prompt_for_bootmanager
864
865   prompt_for_hostname
866
867   prompt_for_password
868
869   prompt_for_mirror
870 }
871
872 # run interactive mode if we didn't get the according configuration yet
873 if [ -z "$TARGET" -o -n "$INTERACTIVE" ] ; then
874    # only target might be unset, so make sure the INTERACTIVE flag is set as well
875    INTERACTIVE=1
876    interactive_mode
877 fi
878 # }}}
879
880 # architecture setup {{{
881 if [ -n "$ARCH" ] ; then
882    ARCHCMD="--arch $ARCH"
883    ARCHINFO=" (${ARCH})"
884 else
885    ARCH="$(dpkg --print-architecture)"
886    ARCHCMD="--arch $ARCH"
887    ARCHINFO=" (${ARCH})"
888 fi
889 # }}}
890
891 # It is not possible to build amd64 on i686. {{{
892 CURRENT_ARCH="$(uname -m)"
893 if [ "$CURRENT_ARCH" != "x86_64" ] ; then
894    if [ "$ARCH" = "amd64" ] ; then
895       eerror "It is not possible to build amd64 on $CURRENT_ARCH. Consider installing and booting the 'linux-image-amd64' kernel or using '--arch i386' instead." ; eend 1
896       bailout 1
897    fi
898 fi
899 # }}}
900
901 # Support for generic release codenames is unavailable. {{{
902 if [ "$RELEASE" = "stable" ] || [ "$RELEASE" = "testing" ] ; then
903    eerror "Generic release codenames (stable, testing) are unsupported. \
904 Please use specific codenames such as lenny, squeeze, wheezy, jessie or stretch." ; eend 1
905    bailout 1
906 fi
907 # }}}
908
909 checkconfiguration
910
911 # finally make sure at least $TARGET is set [the partition for the new system] {{{
912 if [ -n "$TARGET" ] ; then
913    SHORT_TARGET="${TARGET##*/}"
914 else
915    eerror "Please adjust $CONFFILES/config or..."
916    eerror "... use the interactive version for configuration before running ${0}" ; eend 1
917    bailout 1
918 fi
919 # }}}
920
921 # stages setup {{{
922 if [ -z "$STAGES" ] ; then
923    STAGES="/var/cache/grml-debootstrap/stages_${SHORT_TARGET}"
924    [ -d "$STAGES" ] || mkdir -p "$STAGES"
925 fi
926
927 if [ -r "$STAGES"/grml-debootstrap ] ; then
928    if grep -q 'done' "${STAGES}/grml-debootstrap" ; then
929       eerror "Error: grml-debootstrap has been executed already, won't continue therefore."
930       eerror "If you want to re-execute grml-debootstrap just manually remove ${STAGES}" ; eend 1
931    fi
932 fi
933 # }}}
934
935 # partition handling {{{
936 PARTITION=''
937 DIRECTORY=''
938
939 set_target_directory(){
940     # assume we are installing into a directory, don't run mkfs and grub related stuff therefore
941     DIRECTORY=1
942     MNTPOINT="$TARGET"
943     MKFS=''
944     TUNE2FS=''
945     FSCK=''
946     # make sure we normalise the path to an absolute directory name so something like:
947     #  mkdir -p foo/a bar/a; (cd foo; grml-debootstrap -t a)&; (cd bar; grml-debootstrap -t a)&; wait
948     # works
949     TARGET="$(readlink -f "$TARGET")"
950 }
951
952 if [ -b "$TARGET" ] || [ -n "$VIRTUAL" ] ; then
953     PARTITION=1
954 else
955     set_target_directory
956 fi
957 # }}}
958
959 # make sure we have the right syntax when using an iso image {{{
960 if [ -n "$ISO" ] ; then
961    case $ISO in
962       file*) # do nothing
963       ;;
964       *)
965       ISO=file:$ISO
966       ;;
967    esac
968 fi
969 ISODIR=${ISO##file:}
970 ISODIR=${ISODIR%%/}
971 # }}}
972
973 # Debian ISOs do not contain signed Release files {{{
974 if [ -n "$ISO" ] ; then
975     DEBOOTSTRAP_OPT="$DEBOOTSTRAP_OPT --no-check-gpg"
976 fi
977 # }}}
978
979 # create filesystem {{{
980 mkfs() {
981   if [ -n "$DIRECTORY" ] ; then
982      einfo "Running grml-debootstrap on a directory, skipping mkfs stage."
983      return 0
984   fi
985
986   if grep -q "$TARGET" /proc/mounts ; then
987     eerror "$TARGET already mounted, exiting to avoid possible damage. (Manually unmount $TARGET)" ; eend 1
988     bailout 1
989   fi
990
991   # mkfs.ext* might prompt with "/dev/sdX# contains a ext* file system
992   # created on ... Proceed anyway? (y,n)" which we want to skip in force mode
993   if [ -n "$MKFS" ] && [ -n "$FORCE" ] ; then
994     case "$MKFS" in
995       mkfs.ext*)
996         einfo "Enabling force option (-F) for mkfs.ext* tool as requested via --force switch."
997         MKFS_OPTS="$MKFS_OPTS -F"
998         eend 0
999         ;;
1000     esac
1001   fi
1002
1003   if [ -n "$MKFS" ] ; then
1004     einfo "Running $MKFS $MKFS_OPTS on $TARGET"
1005     "$MKFS" $MKFS_OPTS "$TARGET" ; RC=$?
1006
1007     if [ "$FIXED_DISK_IDENTIFIERS" = "yes" ] ; then
1008       if ! echo "$MKFS" | grep -q "mkfs.ext" ; then
1009         eerror "Not changing disk uuid for $TARGET because $MKFS doesn't seem to match for ext{2,3,4} file system"
1010         eend 1
1011         bailout 1
1012       else
1013         einfo "Changing disk uuid for $TARGET to fixed (non-random) value $DISK_IDENTIFIER using tune2fs"
1014         tune2fs "$TARGET" -U "$DISK_IDENTIFIER"
1015         eend $?
1016       fi
1017     fi
1018
1019     # make sure /dev/disk/by-uuid/... is up2date, otherwise grub
1020     # will fail to detect the uuid in the chroot
1021     if [ -n "$VIRTUAL" ] ; then
1022       einfo "Virtual environment doesn't require blockdev --rereadpt, skipping therefore"
1023     elif echo "$TARGET" | grep -q "/dev/md" ; then
1024       blockdev --rereadpt "${TARGET}"
1025     else
1026       # if we deploy to /dev/sdX# then let's see if /dev/sdX exists
1027       local main_device="${TARGET%%[0-9]*}"
1028       # sanity check to not try to e.g. access /dev/loop if we get /dev/loop0
1029       if [ -f "/sys/block/$(basename ${main_device})/$(basename ${TARGET})/dev" ] ; then
1030         blockdev --rereadpt "$main_device"
1031       else
1032         einfo "No underlying block device for $TARGET identified, skipping blockdev --rereadpt."
1033       fi
1034     fi
1035     # give the system 2 seconds, otherwise we might run into
1036     # race conditions :-/
1037     sleep 2
1038
1039     eval "$(blkid -o udev "$TARGET" 2>/dev/null)"
1040     [ -n "$ID_FS_UUID" ] && TARGET_UUID="$ID_FS_UUID" || TARGET_UUID=""
1041
1042     eend $RC
1043   fi
1044 }
1045 # }}}
1046
1047 # modify filesystem settings {{{
1048 tunefs() {
1049   if [ -n "$TUNE2FS" ] && echo "$MKFS" | grep -q "mkfs.ext" ; then
1050      einfo "Disabling automatic filesystem check on $TARGET via tune2fs"
1051      $TUNE2FS "$TARGET"
1052      eend $?
1053   fi
1054 }
1055 # }}}
1056
1057 # mount the new partition or if it's a directory do nothing at all {{{
1058 mount_target() {
1059   if [ -n "$DIRECTORY" ] ; then
1060      einfo "Running grml-debootstrap on a directory, nothing to mount."
1061   else
1062      if grep -q "$TARGET" /proc/mounts ; then
1063         ewarn "$TARGET already mounted, continuing anyway." ; eend 0
1064      else
1065        if ! [ -d "${MNTPOINT}" ] ; then
1066           [ -n "$VIRTUAL" ] || mkdir -p "${MNTPOINT}"
1067        fi
1068        einfo "Mounting $TARGET to $MNTPOINT"
1069        mkdir -p "$MNTPOINT"
1070        mount -o rw,suid,dev "$TARGET" "$MNTPOINT"
1071        eend $?
1072      fi
1073   fi
1074   if [ -n "$ISODIR" ] ; then
1075      einfo "Mounting Debian image loopback to $MNTPOINT/$ISODIR."
1076      mkdir -p "$MNTPOINT/$ISODIR"
1077      mount --bind "$ISODIR" "$MNTPOINT/$ISODIR"
1078      eend $?
1079   fi
1080 }
1081 # }}}
1082
1083 # prepare VM image for usage with debootstrap {{{
1084 prepare_vm() {
1085   if [ -z "$VIRTUAL" ] ; then
1086      return 0 # be quiet by intention
1087   fi
1088
1089   if [ -b "$TARGET" -a -n "$VMFILE" ] ; then
1090      eerror "Error: specified virtual disk target ($TARGET) is an existing block device."
1091      eend 1
1092      bailout 1
1093   fi
1094   if [ ! -b "$TARGET" -a -z "$VMFILE" ] ; then
1095      eerror "Error: specified virtual disk target ($TARGET) does not exist yet."
1096      eend 1
1097      bailout 1
1098   fi
1099
1100   ORIG_TARGET="$TARGET" # store for later reuse
1101
1102   if [ -n "$VMFILE" ]; then
1103     qemu-img create -f raw "${TARGET}" "${VMSIZE}"
1104   fi
1105   echo 4 66 | /usr/share/grml-debootstrap/bootgrub.mksh -A | dd of="$TARGET" conv=notrunc
1106   dd if=/dev/zero bs=1 conv=notrunc count=64 seek=446 of="$TARGET"
1107   if [ "$FIXED_DISK_IDENTIFIERS" = "yes" ] ; then
1108     einfo "Adjusting disk signature to a fixed (non-random) value"
1109     MBRTMPFILE=$(mktemp)
1110     dd if="${TARGET}" of="${MBRTMPFILE}" bs=512 count=1
1111     echo -en "\x41\x41\x41\x41" | dd of="${MBRTMPFILE}" conv=notrunc seek=440 bs=1
1112     dd if="${MBRTMPFILE}" of="${TARGET}" conv=notrunc
1113     eend $?
1114   fi
1115   parted -s "${TARGET}" 'mkpart primary ext4 2M -1'
1116
1117   # if dm-mod isn't available then kpartx will fail with
1118   # "Is device-mapper driver missing from kernel? [...]"
1119   if ! kpartx -av "$TARGET" >/dev/null 2>&1 || ! grep -q 'device-mapper' /proc/misc >/dev/null 2>&1 ; then
1120     einfo "Device-mapper not ready yet, trying to load dm-mod module."
1121     modprobe dm-mod ; eend $?
1122   fi
1123
1124   # make sure loop module is present
1125   if ! losetup -f >/dev/null 2>&1; then
1126     einfo "Can not find a usable loop device, retrying after loading loop module."
1127     modprobe loop
1128     if losetup -f >/dev/null 2>&1; then
1129       einfo "Found a usable loop device now, continuing."
1130     else
1131       eerror "Error finding usable loop device" ; eend 1
1132       bailout 1
1133     fi
1134   fi
1135
1136   DEVINFO=$(kpartx -asv "$TARGET") # 'add map loop1p1 (253:0): 0 6289408 linear /dev/loop1 2048'
1137   if [ -z "${DEVINFO}" ] ; then
1138     eerror "Error setting up loopback device." ; eend 1
1139     bailout 1
1140   fi
1141
1142   # hopefully this always works as expected
1143   LOOP=$(echo "${DEVINFO}" | sed 's/.* linear //; s/ [[:digit:]]*//') # 'loop1'
1144   LOOP_PART="$(echo "${DEVINFO##add map }" | sed 's/ .*//')" # 'loop1p1'
1145   export TARGET="/dev/mapper/$LOOP_PART" # '/dev/mapper/loop1p1'
1146
1147   if [ -z "$TARGET" ] ; then
1148      eerror "Error: target could not be set to according /dev/mapper/* device." ; eend 1
1149      bailout 1
1150   fi
1151 }
1152 # }}}
1153
1154 # make VM image bootable and unmount it {{{
1155 finalize_vm() {
1156   if [ -z "${VIRTUAL}" ] ; then
1157      return 0
1158   fi
1159
1160   if ! mount "${TARGET}" "${MNTPOINT}" ; then
1161     eerror "Error: Mounting ${TARGET} failed, can not continue." ; eend 1
1162     bailout 1
1163   fi
1164
1165   mount -t proc none "${MNTPOINT}"/proc
1166   mount -t sysfs none "${MNTPOINT}"/sys
1167   mount --bind /dev "${MNTPOINT}"/dev
1168   mount --bind /dev/pts "${MNTPOINT}"/dev/pts
1169
1170 # Has chroot-script installed GRUB to MBR using grub-install (successfully), already?
1171 # chroot-script skips installation for unset ${GRUB}
1172 if [[ -z "${GRUB}" ]] || ! dd if="${GRUB}" bs=512 count=1 2>/dev/null | cat -v | fgrep -q GRUB; then
1173   einfo "Installing Grub as bootloader."
1174
1175   if ! chroot "${MNTPOINT}" dpkg --list grub-pc 2>/dev/null | grep -q '^ii' ; then
1176     echo "Notice: grub-pc package not present yet, installing it therefore."
1177     DEBIAN_FRONTEND=$DEBIAN_FRONTEND chroot "$MNTPOINT" apt-get -y install $DPKG_OPTIONS grub-pc
1178   fi
1179
1180   mkdir -p "${MNTPOINT}/boot/grub"
1181   if ! [ -d "${MNTPOINT}"/usr/lib/grub/i386-pc/ ] ; then
1182      eerror "Error: grub not installed inside Virtual Machine. Can not install bootloader." ; eend 1
1183      bailout 1
1184   fi
1185
1186   case "$RELEASE" in
1187     lenny|squeeze|wheezy)
1188       cp "${MNTPOINT}"/usr/lib/grub/i386-pc/* "${MNTPOINT}/boot/grub/"
1189       ;;
1190     *)
1191       cp -a "${MNTPOINT}"/usr/lib/grub/i386-pc "${MNTPOINT}/boot/grub/"
1192       ;;
1193   esac
1194   chroot "${MNTPOINT}" grub-mkimage -O i386-pc -p "(hd0,msdos1)/boot/grub" -o /tmp/core.img biosdisk part_msdos ext2
1195   dd if="${MNTPOINT}/tmp/core.img" of="${ORIG_TARGET}" conv=notrunc seek=4
1196   rm -f "${MNTPOINT}/tmp/core.img"
1197 fi
1198
1199   einfo "Updating grub configuration file."
1200   if [ -n "$BOOT_APPEND" ] ; then
1201      sed -i "/GRUB_CMDLINE_LINUX_DEFAULT/ s#\"\$# ${BOOT_APPEND}\"#" "${MNTPOINT}"/etc/default/grub
1202   fi
1203   chroot "${MNTPOINT}" update-grub
1204
1205   case "$RELEASE" in
1206     jessie)
1207       einfo "Applying workaround for GRUB font path bug in jessie (Debian #787685)."
1208       mkdir -p "${MNTPOINT}/boot/grub/fonts/"
1209       cp "${MNTPOINT}/usr/share/grub/unicode.pf2" "${MNTPOINT}/boot/grub/fonts/"
1210       ;;
1211   esac
1212
1213   case "$RELEASE" in
1214     lenny|squeeze|wheezy)
1215       if grep -q '^GRUB_DISABLE_LINUX_UUID=.*true' "${MNTPOINT}"/etc/default/grub 2>/dev/null ; then
1216         ewarn "GRUB_DISABLE_LINUX_UUID is set to true in /etc/default/grub, not adjusting root= in grub.cfg."
1217         ewarn "Please note that your system might NOT be able to properly boot."
1218       else
1219         einfo "Adjusting grub.cfg for successful boot sequence."
1220         sed -i "s;root=[^ ]\+;root=UUID=$TARGET_UUID;" "${MNTPOINT}"/boot/grub/grub.cfg
1221       fi
1222       ;;
1223   esac
1224
1225   umount "${MNTPOINT}"/proc
1226   umount "${MNTPOINT}"/sys
1227   umount "${MNTPOINT}"/dev/pts
1228   try_umount 3 "${MNTPOINT}"/dev
1229   umount "${MNTPOINT}"
1230   kpartx -d "${ORIG_TARGET}" >/dev/null
1231 }
1232 # }}}
1233
1234 # install main chroot {{{
1235 debootstrap_system() {
1236   if [ "$_opt_nodebootstrap" ]; then
1237      einfo "Skipping debootstrap as requested."
1238      return
1239   fi
1240
1241   if grep -q "$MNTPOINT" /proc/mounts || [ -n "$DIRECTORY" ] ; then
1242     :
1243   else
1244     eerror "Error: $MNTPOINT not mounted, can not continue."
1245     eend 1 ; exit 1
1246   fi
1247
1248   if [ -n "$ISO" ] ; then
1249     einfo "Running $DEBOOTSTRAP $DEBOOTSTRAP_OPT for release ${RELEASE}${ARCHINFO} using ${ISO}"
1250     einfo "Executing: $DEBOOTSTRAP $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT $RELEASE $MNTPOINT $ISO"
1251     "$DEBOOTSTRAP" $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT "$RELEASE" "$MNTPOINT" "$ISO"
1252     RC=$?
1253   else
1254     einfo "Running $DEBOOTSTRAP $DEBOOTSTRAP_OPT for release ${RELEASE}${ARCHINFO} using ${MIRROR}"
1255     einfo "Executing: $DEBOOTSTRAP $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT $RELEASE $MNTPOINT $MIRROR"
1256     "$DEBOOTSTRAP" $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT "$RELEASE" "$MNTPOINT" "$MIRROR"
1257     RC=$?
1258   fi
1259
1260   if [ $RC -ne 0 ] ; then
1261     if [ -r "$MNTPOINT/debootstrap/debootstrap.log" ] && \
1262       [ -s "$MNTPOINT/debootstrap/debootstrap.log" ] ; then
1263       einfo "Presenting last ten lines of debootstrap.log:"
1264       tail -10 "${MNTPOINT}"/debootstrap/debootstrap.log
1265       einfo "End of debootstrap.log"
1266     fi
1267   fi
1268
1269   eend $RC
1270 }
1271 # }}}
1272
1273 # prepare chroot via chroot-script {{{
1274 preparechroot() {
1275   einfo "Preparing chroot system"
1276
1277   # provide variables to chroot system
1278   CHROOT_VARIABLES="/var/cache/grml-debootstrap/variables_${SHORT_TARGET}"
1279   touch "$CHROOT_VARIABLES"
1280   chmod 600 "$CHROOT_VARIABLES" # make sure nobody except root can read it
1281   echo "# Configuration of ${PN}"                                                                                   > "$CHROOT_VARIABLES"
1282   # Resorting to sed(1) for escaping since "VAR='${VAR//\'/\'\\\'\'}'" does not work with all versions of Bash,
1283   #   e.g. not with 4.2.37(1)-release (a.k.a 4.2+dfsg-0.1+deb7u3) of Debian wheezy
1284   [ -n "$ARCH" ]                && echo "ARCH='$(sed "s,','\\\\'',g" <<<"${ARCH}")'"                               >> "$CHROOT_VARIABLES"
1285   [ -n "$BACKPORTREPOS" ]       && echo "BACKPORTREPOS='$(sed "s,','\\\\'',g" <<<"${BACKPORTREPOS}")'"             >> "$CHROOT_VARIABLES"
1286   [ -n "$CHROOT_SCRIPTS" ]      && echo "CHROOT_SCRIPTS='$(sed "s,','\\\\'',g" <<<"${CHROOT_SCRIPTS}")'"           >> "$CHROOT_VARIABLES"
1287   [ -n "$COMPONENTS" ]          && echo "COMPONENTS='$(sed "s,','\\\\'',g" <<<"${COMPONENTS}")'"                   >> "$CHROOT_VARIABLES"
1288   [ -n "$CONFFILES" ]           && echo "CONFFILES='$(sed "s,','\\\\'',g" <<<"${CONFFILES}")'"                     >> "$CHROOT_VARIABLES"
1289   [ -n "$DEBCONF" ]             && echo "DEBCONF='$(sed "s,','\\\\'',g" <<<"${DEBCONF}")'"                         >> "$CHROOT_VARIABLES"
1290   [ -n "$DEBIAN_FRONTEND" ]     && echo "DEBIAN_FRONTEND='$(sed "s,','\\\\'',g" <<<"${DEBIAN_FRONTEND}")'"         >> "$CHROOT_VARIABLES"
1291   [ -n "$DEBOOTSTRAP" ]         && echo "DEBOOTSTRAP='$(sed "s,','\\\\'',g" <<<"${DEBOOTSTRAP}")'"                 >> "$CHROOT_VARIABLES"
1292   [ -n "$DEFAULT_LOCALES" ]     && echo "DEFAULT_LOCALES='$(sed "s,','\\\\'',g" <<<"${DEFAULT_LOCALES}")'"         >> "$CHROOT_VARIABLES"
1293   [ -n "$DEFAULT_LANGUAGE" ]    && echo "DEFAULT_LANGUAGE='$(sed "s,','\\\\'',g" <<<"${DEFAULT_LANGUAGE}")'"       >> "$CHROOT_VARIABLES"
1294   [ -n "$EXTRAPACKAGES" ]       && echo "EXTRAPACKAGES='$(sed "s,','\\\\'',g" <<<"${EXTRAPACKAGES}")'"             >> "$CHROOT_VARIABLES"
1295   [ -n "$FALLBACK_MIRROR" ]     && echo "FALLBACK_MIRROR='$(sed "s,','\\\\'',g" <<<"${FALLBACK_MIRROR}")'"         >> "$CHROOT_VARIABLES"
1296   [ -n "$FORCE" ]               && echo "FORCE='$(sed "s,','\\\\'',g" <<<"${FORCE}")'"                             >> "$CHROOT_VARIABLES"
1297   [ -n "$GRMLREPOS" ]           && echo "GRMLREPOS='$(sed "s,','\\\\'',g" <<<"${GRMLREPOS}")'"                     >> "$CHROOT_VARIABLES"
1298   [ -n "$GRUB" ]                && echo "GRUB='$(sed "s,','\\\\'',g" <<<"${GRUB}")'"                               >> "$CHROOT_VARIABLES"
1299   [ -n "$HOSTNAME" ]            && echo "HOSTNAME='$(sed "s,','\\\\'',g" <<<"${HOSTNAME}")'"                       >> "$CHROOT_VARIABLES"
1300   [ -n "$INITRD" ]              && echo "INITRD='$(sed "s,','\\\\'',g" <<<"${INITRD}")'"                           >> "$CHROOT_VARIABLES"
1301   [ -n "$INSTALL_NOTES" ]       && echo "INSTALL_NOTES='$(sed "s,','\\\\'',g" <<<"${INSTALL_NOTES}")'"             >> "$CHROOT_VARIABLES"
1302   [ -n "$ISODIR" ]              && echo "ISODIR='$(sed "s,','\\\\'',g" <<<"${ISO}")'"                              >> "$CHROOT_VARIABLES"
1303   [ -n "$ISO" ]                 && echo "ISO='$(sed "s,','\\\\'',g" <<<"${ISO}")'"                                 >> "$CHROOT_VARIABLES"
1304   [ -n "$KEEP_SRC_LIST" ]       && echo "KEEP_SRC_LIST='$(sed "s,','\\\\'',g" <<<"${KEEP_SRC_LIST}")'"             >> "$CHROOT_VARIABLES"
1305   [ -n "$LOCALES" ]             && echo "LOCALES='$(sed "s,','\\\\'',g" <<<"${LOCALES}")'"                         >> "$CHROOT_VARIABLES"
1306   [ -n "$MIRROR" ]              && echo "MIRROR='$(sed "s,','\\\\'',g" <<<"${MIRROR}")'"                           >> "$CHROOT_VARIABLES"
1307   [ -n "$MKFS" ]                && echo "MKFS='$(sed "s,','\\\\'',g" <<<"${MKFS}")'"                               >> "$CHROOT_VARIABLES"
1308   [ -n "$NOPASSWORD" ]          && echo "NOPASSWORD=\"true\""                                                      >> "$CHROOT_VARIABLES"
1309   [ -n "$NOKERNEL" ]            && echo "NOKERNEL=\"true\""                                                        >> "$CHROOT_VARIABLES"
1310   [ -n "$PACKAGES" ]            && echo "PACKAGES='$(sed "s,','\\\\'',g" <<<"${PACKAGES}")'"                       >> "$CHROOT_VARIABLES"
1311   [ -n "$POST_SCRIPTS" ]        && echo "POST_SCRIPTS='$(sed "s,','\\\\'',g" <<<"${POST_SCRIPTS}")'"               >> "$CHROOT_VARIABLES"
1312   [ -n "$PRE_SCRIPTS" ]         && echo "PRE_SCRIPTS='$(sed "s,','\\\\'',g" <<<"${PRE_SCRIPTS}")'"                 >> "$CHROOT_VARIABLES"
1313   [ -n "$RECONFIGURE" ]         && echo "RECONFIGURE='$(sed "s,','\\\\'',g" <<<"${RECONFIGURE}")'"                 >> "$CHROOT_VARIABLES"
1314   [ -n "$RELEASE" ]             && echo "RELEASE='$(sed "s,','\\\\'',g" <<<"${RELEASE}")'"                         >> "$CHROOT_VARIABLES"
1315   [ -n "$RM_APTCACHE" ]         && echo "RM_APTCACHE='$(sed "s,','\\\\'',g" <<<"${RM_APTCACHE}")'"                 >> "$CHROOT_VARIABLES"
1316   [ -n "$ROOTPASSWORD" ]        && echo "ROOTPASSWORD='$(sed "s,','\\\\'',g" <<<"${ROOTPASSWORD}")'"               >> "$CHROOT_VARIABLES"
1317   [ -n "$SCRIPTS" ]             && echo "SCRIPTS='$(sed "s,','\\\\'',g" <<<"${SCRIPTS}")'"                         >> "$CHROOT_VARIABLES"
1318   [ -n "$SECURE" ]              && echo "SECURE='$(sed "s,','\\\\'',g" <<<"${SECURE}")'"                           >> "$CHROOT_VARIABLES"
1319   [ -n "$SELECTED_PARTITIONS" ] && echo "SELECTED_PARTITIONS='$(sed "s,','\\\\'',g" <<<"${SELECTED_PARTITIONS}")'" >> "$CHROOT_VARIABLES"
1320   [ -n "$TARGET" ]              && echo "TARGET='$(sed "s,','\\\\'',g" <<<"${TARGET}")'"                           >> "$CHROOT_VARIABLES"
1321   [ -n "$UPGRADE_SYSTEM" ]      && echo "UPGRADE_SYSTEM='$(sed "s,','\\\\'',g" <<<"${UPGRADE_SYSTEM}")'"           >> "$CHROOT_VARIABLES"
1322   [ -n "$TARGET_UUID" ]         && echo "TARGET_UUID='$(sed "s,','\\\\'',g" <<<"${TARGET_UUID}")'"                 >> "$CHROOT_VARIABLES"
1323   [ -n "$TIMEZONE" ]            && echo "TIMEZONE='$(sed "s,','\\\\'',g" <<<"${TIMEZONE}")'"                       >> "$CHROOT_VARIABLES"
1324   [ -n "$TUNE2FS" ]             && echo "TUNE2FS='$(sed "s,','\\\\'',g" <<<"${TUNE2FS}")'"                         >> "$CHROOT_VARIABLES"
1325   [ -n "$VMSIZE" ]              && echo "VMSIZE='$(sed "s,','\\\\'',g" <<<"${VMSIZE}")'"                           >> "$CHROOT_VARIABLES"
1326
1327   cp $VERBOSE "${CONFFILES}"/chroot-script "${MNTPOINT}"/bin/chroot-script
1328   chmod 755 "${MNTPOINT}"/bin/chroot-script
1329   [ -d "$MNTPOINT"/etc/debootstrap/ ] || mkdir "$MNTPOINT"/etc/debootstrap/
1330
1331   # make sure we have our files for later use via chroot-script
1332   cp $VERBOSE "${CONFFILES}/config"           "${MNTPOINT}"/etc/debootstrap/
1333   # make sure we adjust the configuration variables accordingly:
1334   sed -i "s#RELEASE=.*#RELEASE=\"$RELEASE\"#" "${MNTPOINT}"/etc/debootstrap/config
1335   sed -i "s#TARGET=.*#TARGET=\"$TARGET\"#"    "${MNTPOINT}"/etc/debootstrap/config
1336   sed -i "s#GRUB=.*#GRUB=\"$GRUB\"#"          "${MNTPOINT}"/etc/debootstrap/config
1337
1338   # install notes:
1339   if [ -n "$INSTALL_NOTES" ] ; then
1340      [ -r "$INSTALL_NOTES" ] && cp "$INSTALL_NOTES" "${MNTPOINT}"/etc/debootstrap/
1341   fi
1342
1343   # package selection:
1344   if [ "$PACKAGES" = 'yes' ] ; then
1345     cp $VERBOSE "${_opt_packages:-$CONFFILES/packages}" \
1346       "${MNTPOINT}"/etc/debootstrap/packages
1347   fi
1348
1349   # debconf preseeding:
1350   _opt_debconf=${_opt_debconf:-$CONFFILES/debconf-selections}
1351   [ -f "${_opt_debconf}" ] && [ "$DEBCONF" = 'yes' ] && \
1352     cp $VERBOSE "${_opt_debconf}" "${MNTPOINT}"/etc/debootstrap/debconf-selections
1353
1354   # copy scripts that should be executed inside the chroot:
1355   _opt_chroot_scripts=${_opt_chroot_scripts:-$CONFFILES/chroot-scripts/}
1356   [ -d "$_opt_chroot_scripts" ] && [ "$CHROOT_SCRIPTS" = 'yes' ] && {
1357     mkdir -p "${MNTPOINT}"/etc/debootstrap/chroot-scripts
1358     cp -a $VERBOSE "${_opt_chroot_scripts}"/* "${MNTPOINT}"/etc/debootstrap/chroot-scripts/
1359   }
1360
1361   # notice: do NOT use $CHROOT_VARIABLES inside chroot but statically file instead!
1362   cp $VERBOSE "${CHROOT_VARIABLES}" "${MNTPOINT}"/etc/debootstrap/variables
1363
1364   cp $VERBOSE -a -L "${CONFFILES}"/extrapackages/ "${MNTPOINT}"/etc/debootstrap/
1365
1366   # make sure we can access network [relevant for cdebootstrap]
1367   [ -f "${MNTPOINT}"/etc/resolv.conf ] || cp $VERBOSE /etc/resolv.conf "${MNTPOINT}"/etc/resolv.conf
1368
1369   # provide system's /etc/hosts to the target:
1370   if ! [ -f "$MNTPOINT/etc/hosts" ] ; then
1371      cp $VERBOSE /etc/hosts "${MNTPOINT}"/etc/hosts
1372   fi
1373
1374   # setup default locales
1375   [ -n "$LOCALES" ] && cp $VERBOSE "${CONFFILES}"/locale.gen "${MNTPOINT}"/etc/locale.gen
1376
1377   # MAKEDEV is just a forking bomb crap, let's do it on our own instead :)
1378   ( cd "${MNTPOINT}"/dev && tar zxf /etc/debootstrap/devices.tar.gz )
1379
1380   # copy any existing files to chroot
1381   [ -d "${CONFFILES}"/bin   ] && cp $VERBOSE -a -L "${CONFFILES}"/bin/*   "${MNTPOINT}"/bin/
1382   [ -d "${CONFFILES}"/boot  ] && cp $VERBOSE -a -L "${CONFFILES}"/boot/*  "${MNTPOINT}"/boot/
1383   [ -d "${CONFFILES}"/etc   ] && cp $VERBOSE -a -L "${CONFFILES}"/etc/*   "${MNTPOINT}"/etc/
1384   [ -d "${CONFFILES}"/sbin  ] && cp $VERBOSE -a -L "${CONFFILES}"/sbin/*  "${MNTPOINT}"/sbin/
1385   [ -d "${CONFFILES}"/share ] && cp $VERBOSE -a -L "${CONFFILES}"/share/* "${MNTPOINT}"/share/
1386   [ -d "${CONFFILES}"/usr   ] && cp $VERBOSE -a -L "${CONFFILES}"/usr/*   "${MNTPOINT}"/usr/
1387   [ -d "${CONFFILES}"/var   ] && cp $VERBOSE -a -L "${CONFFILES}"/var/*   "${MNTPOINT}"/var/
1388
1389   # network setup
1390   DEFAULT_INTERFACES="# /etc/network/interfaces - generated by grml-debootstrap
1391
1392 # Include files from /etc/network/interfaces.d when using
1393 # ifupdown v0.7.44 or newer:
1394 #source-directory /etc/network/interfaces.d
1395
1396 auto lo
1397 iface lo inet loopback
1398
1399 allow-hotplug eth0
1400 iface eth0 inet dhcp
1401 "
1402
1403   if [ -n "$NOINTERFACES" ] ; then
1404     einfo "Not installing /etc/network/interfaces as requested via --nointerfaces option" ; eend 0
1405   elif [ -n "$USE_DEFAULT_INTERFACES" ] ; then
1406     einfo "Installing default /etc/network/interfaces as requested via --defaultinterfaces options."
1407     echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces"
1408     eend $?
1409   elif [ -n "$VIRTUAL" ] ; then
1410     einfo "Setting up Virtual Machine, installing default /etc/network/interfaces"
1411     echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces"
1412     eend $?
1413   elif [ -r /etc/network/interfaces ] ; then
1414     einfo "Copying /etc/network/interfaces from host to target system"
1415     cp $VERBOSE /etc/network/interfaces "${MNTPOINT}/etc/network/interfaces"
1416     eend $?
1417   else
1418     ewarn "Couldn't read /etc/network/interfaces, installing default /etc/network/interfaces"
1419     echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces"
1420     eend $?
1421   fi
1422
1423   # install config file providing some example entries
1424   if [ -r /etc/network/interfaces.examples -a ! -r "$MNTPOINT/etc/network/interfaces.examples" ] ; then
1425      cp /etc/network/interfaces.examples "$MNTPOINT/etc/network/interfaces.examples"
1426   fi
1427
1428   eend 0
1429 }
1430 # }}}
1431
1432 # execute all scripts in /etc/debootstrap/pre-scripts/ {{{
1433 execute_pre_scripts() {
1434   # make sure hostname is set even before chroot-script get executed
1435   echo "$HOSTNAME" > "$MNTPOINT"/etc/hostname
1436
1437   # make sure we have $MNTPOINT available for our scripts
1438   export MNTPOINT
1439
1440   if [ -d "$_opt_pre_scripts" ] || [ "$PRE_SCRIPTS" = 'yes' ] ; then
1441     [ -d "$_opt_pre_scripts" ] && pre_scripts="$_opt_pre_scripts" || pre_scripts="${CONFFILES}/pre-scripts/"
1442     for script in "${pre_scripts}"/* ; do
1443       if [ -x "$script" ] ; then
1444         einfo "Executing pre-script $script"
1445         "$script" ; eend $?
1446       fi
1447     done
1448   fi
1449 }
1450 # }}}
1451
1452 # execute all scripts in /etc/debootstrap/post-scripts/ {{{
1453 execute_post_scripts() {
1454   # make sure we have $MNTPOINT available for our scripts
1455   export MNTPOINT
1456
1457   if [ -d "$_opt_scripts" ] || [ "$SCRIPTS" = 'yes' ] ; then
1458     # legacy support for /etc/debootstrap/scripts/
1459     [ -d "$_opt_scripts" ] && post_scripts="$_opt_scripts" || post_scripts="${CONFFILES}/scripts/"
1460     ewarn "Deprecation NOTE: --scripts/SCRIPTS are deprecated, please switch to --post-scripts/POST_SCRIPTS instead."
1461   elif [ -d "$_opt_post_scripts" ] || [ "$POST_SCRIPTS" = 'yes' ] ; then
1462     [ -d "$_opt_post_scripts" ] && post_scripts="$_opt_post_scripts" || post_scripts="${CONFFILES}/post-scripts/"
1463   fi
1464
1465   if [ -n "$post_scripts" ] ; then
1466     for script in "${post_scripts}"/* ; do
1467       if [ -x "$script" ] ; then
1468         einfo "Executing post-script $script"
1469         "$script" ; eend $?
1470       fi
1471     done
1472   fi
1473 }
1474 # }}}
1475
1476 try_umount() {
1477   local tries=$1
1478   local mountpoint="$2"
1479
1480   for (( try=1; try<=tries; try++ )); do
1481     if [[ ${try} -eq ${tries} ]]; then
1482       # Last time, show errors this time
1483       umount "${mountpoint}" && return 0
1484     else
1485       # Not last time, hide errors until fatal
1486       if umount "${mountpoint}" 2>/dev/null ; then
1487         return 0
1488       else
1489         sleep 1
1490       fi
1491     fi
1492   done
1493   return 1  # Tried enough
1494 }
1495
1496 # execute chroot-script {{{
1497 chrootscript() {
1498   if ! [ -r "$MNTPOINT/bin/chroot-script" ] ; then
1499     mount_target
1500   fi
1501
1502   if ! [ -x "$MNTPOINT/bin/chroot-script" ] ; then
1503     eerror "Fatal: $MNTPOINT/bin/chroot-script could not be found."
1504     eend 1
1505   else
1506     einfo "Executing chroot-script now"
1507     mount --bind /dev "$MNTPOINT"/dev
1508     mount --bind /dev/pts "$MNTPOINT"/dev/pts
1509     if [ "$DEBUG" = "true" ] ; then
1510       chroot "$MNTPOINT" /bin/bash -x /bin/chroot-script ; RC=$?
1511     else
1512       chroot "$MNTPOINT" /bin/chroot-script ; RC=$?
1513     fi
1514     try_umount 3 "$MNTPOINT"/dev/pts
1515     try_umount 3 "$MNTPOINT"/dev
1516     eend $RC
1517   fi
1518
1519   # finally get rid of chroot-script again, there's no good reason to
1520   # keep it on the installed system
1521   if grep -q GRML_CHROOT_SCRIPT_MARKER "${MNTPOINT}/bin/chroot-script" ; then
1522     einfo "Removing chroot-script again"
1523     rm -f "${MNTPOINT}/bin/chroot-script"
1524     eend $?
1525   else
1526     einfo "Keeping chroot-script as string GRML_CHROOT_SCRIPT_MARKER could not be found"
1527     eend 0
1528   fi
1529 }
1530 # }}}
1531
1532 # unmount $MNTPOINT {{{
1533 umount_chroot() {
1534
1535   # display installation notes:
1536   if [ -n "$INSTALL_NOTES" ] ; then
1537      [ -r "${MNTPOINT}/${INSTALL_NOTES}" ] && cat "${MNTPOINT}/${INSTALL_NOTES}"
1538   fi
1539
1540   if [ -n "$ISODIR" ] ; then
1541      if grep -q "$ISODIR" /proc/mounts ; then
1542         einfo "Unmount $MNTPOINT/$ISODIR"
1543         umount "$MNTPOINT/$ISODIR"
1544         eend $?
1545      fi
1546   fi
1547
1548   if grep -q "$MNTPOINT" /proc/mounts ; then
1549      if [ -n "$PARTITION" ] ; then
1550         einfo "Unmount $MNTPOINT"
1551         umount "$MNTPOINT"
1552         eend $?
1553      fi
1554   fi
1555 }
1556 # }}}
1557
1558 # execute filesystem check {{{
1559 fscktool() {
1560  if [ -n "$VIRTUAL" ] ; then
1561    einfo "Skipping filesystem check because we deploy a virtual machine."
1562    return 0
1563  fi
1564
1565  if [ "$FSCK" = 'yes' ] ; then
1566    [ -n "$FSCKTOOL" ] || FSCKTOOL="fsck.${MKFS#mkfs.}"
1567    einfo "Checking filesystem on $TARGET using $FSCKTOOL"
1568    "$FSCKTOOL" "$TARGET"
1569    eend $?
1570  fi
1571 }
1572 # }}}
1573
1574 # get rid of grml-debootstrap config files {{{
1575 remove_configs() {
1576   if [ "$REMOVE_CONFIGS" != "yes" ] ; then
1577     return 0
1578   fi
1579
1580   if ! mountpoint "${MNTPOINT}" >/dev/null 2>&1 ; then
1581     ewarn "Target ${MNTPOINT} doesn't seem to be mounted, can't remove configuration files." ; eend 0
1582     return 0
1583   fi
1584
1585   einfo "Removing configuration files from installed system as requested via --remove-configs / REMOVE_CONFIGS."
1586   rm -rf "${MNTPOINT}"/etc/debootstrap/
1587   eend $?
1588 }
1589 # }}}
1590
1591 # now execute all the functions {{{
1592 for i in prepare_vm mkfs tunefs mount_target debootstrap_system \
1593          preparechroot execute_pre_scripts chrootscript execute_post_scripts \
1594          remove_configs umount_chroot finalize_vm fscktool ; do
1595     if stage "${i}" ; then
1596       if "$i" ; then
1597         stage "${i}" 'done' && rm -f "${STAGES}/${i}"
1598       else
1599         bailout 2 "$i"
1600       fi
1601     fi
1602 done
1603
1604 cleanup
1605 # }}}
1606
1607 # end dialog of autoinstallation {{{
1608 if [ -n "$AUTOINSTALL" ] ; then
1609    if dialog --title "${PN}" --pause "Finished execution of ${PN}.
1610 Automatically rebooting in 10 seconds.
1611
1612 Choose Cancel to skip rebooting." 10 60 10 ; then
1613      noeject noprompt reboot
1614   fi
1615 else
1616    einfo "Finished execution of ${PN}. Enjoy your Debian system." ; eend 0
1617 fi
1618 # }}}
1619
1620 ## END OF FILE #################################################################
1621 # vim: ai tw=100 expandtab foldmethod=marker shiftwidth=2