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