Merge remote-tracking branch 'origin/pr/269'
[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 https://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2+
7 ################################################################################
8 # shellcheck disable=SC2001,SC2181
9
10 # error_handler {{{
11 error_handler() {
12    last_exit_code="$?"
13    last_bash_command="$BASH_COMMAND"
14    echo "Unexpected non-zero exit code $last_exit_code in ${BASH_SOURCE[*]} at line ${BASH_LINENO[*]} detected!
15 last bash command: $last_bash_command"
16    if [ -r "$MNTPOINT/debootstrap/debootstrap.log" ] && \
17           [ -s "$MNTPOINT/debootstrap/debootstrap.log" ] ; then
18        einfo "Presenting last ten lines of debootstrap.log:"
19        tail -10 "${MNTPOINT}"/debootstrap/debootstrap.log
20        einfo "End of debootstrap.log"
21    fi
22    ## Check if "bailout" function is available.
23    ## This is not the case in chroot-script.
24    if command -v bailout >/dev/null 2>&1; then
25       bailout 1
26    else
27       exit 1
28    fi
29 }
30
31 set -e
32 set -E
33 set -o pipefail
34 trap "error_handler" ERR
35 export -f "error_handler"
36 # }}}
37
38 # variables {{{
39 PN="$(basename "$0")"
40 if [[ -d "$(dirname "$(command -v "$0")")"/.git ]]; then
41   VERSION="$(git --git-dir "$(dirname "$(command -v "$0")")"/.git describe | sed 's|^v||')"
42 else
43   VERSION="$(dpkg-query --show --showformat='${Version}' "$PN")"
44 fi
45 VERSION="${VERSION:-unknown}"
46 MNTPOINT="/mnt/debootstrap.$$"
47
48 # defaults
49 [ -n "$CHROOT_SCRIPTS" ] || CHROOT_SCRIPTS='yes'
50 [ -n "$CONFFILES" ] || CONFFILES='/etc/debootstrap'
51 [ -n "$DEBCONF" ] || DEBCONF='yes'
52 [ -n "$DEBIAN_FRONTEND" ] || DEBIAN_FRONTEND='noninteractive'
53 [ -n "$DEBOOTSTRAP" ] || DEBOOTSTRAP='debootstrap'
54 [ -n "$DEFAULT_LANGUAGE" ] || DEFAULT_LANGUAGE='en_US:en'
55 [ -n "$DEFAULT_LOCALES" ] || DEFAULT_LOCALES='en_US.UTF-8'
56 [ -n "$DISK_IDENTIFIER" ] || DISK_IDENTIFIER='26ada0c0-1165-4098-884d-aafd2220c2c6'
57 [ -n "$EXTRAPACKAGES" ] || EXTRAPACKAGES='yes'
58 [ -n "$FALLBACK_MIRROR" ] || FALLBACK_MIRROR='http://deb.debian.org/debian'
59 [ -n "$FIXED_DISK_IDENTIFIERS" ] || FIXED_DISK_IDENTIFIERS="no"
60 [ -n "$FORCE" ] || FORCE=''
61 [ -n "$HOSTNAME" ] || HOSTNAME='grml'
62 [ -n "$INITRD" ] || INITRD='yes'
63 [ -n "$INITRD_GENERATOR" ] || INITRD_GENERATOR='initramfs-tools'
64 [ -n "$INITRD_GENERATOR_OPTS" ] || INITRD_GENERATOR_OPTS=''
65 [ -n "$INSTALL_NOTES" ] || INSTALL_NOTES='/etc/debootstrap/install_notes'
66 [ -n "$LOCALES" ] || LOCALES='yes'
67 [ -n "$MIRROR" ] || MIRROR="$FALLBACK_MIRROR"
68 [ -n "$MKFS" ] || MKFS='mkfs.ext4'
69 [ -n "$MKFS_OPTS" ] || MKFS_OPTS=''
70 [ -n "$PACKAGES" ] || PACKAGES='yes'
71 [ -n "$POST_SCRIPTS" ] || POST_SCRIPTS='yes'
72 [ -n "$PRE_SCRIPTS" ] || PRE_SCRIPTS='yes'
73 [ -n "$RECONFIGURE" ] || RECONFIGURE='console-data'
74 [ -n "$RELEASE" ] || RELEASE='bookworm'
75 [ -n "$RM_APTCACHE" ] || RM_APTCACHE='yes'
76 [ -n "$SCRIPTS" ] || SCRIPTS='no' # deprecated, replaced by POST_SCRIPTS
77 [ -n "$SECURE" ] || SECURE='yes'
78 [ -n "$TIMEZONE" ] || TIMEZONE='Europe/Vienna'
79 [ -n "$TUNE2FS" ] || TUNE2FS='tune2fs -c0 -i0'
80 [ -n "$UPGRADE_SYSTEM" ] || UPGRADE_SYSTEM='yes'
81 [ -n "$VMSIZE" ] || VMSIZE="2G"
82 [ -n "$GRUB_INSTALL" ] || GRUB_INSTALL='yes'
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: bullseye).
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       --vmefi            Create an EFI boot partition for the VM.
132
133 Configuration options:
134
135   -c, --config <file>      Use specified configuration file, defaults to
136                              /etc/debootstrap/config
137   -d, --confdir <path>     Place of config files for debootstrap, defaults
138                              to /etc/debootstrap
139       --packages <file>    Install packages defined in specified list file
140                              instead of using /etc/debootstrap/packages.
141       --nopackages         Skip installation of packages defined in
142                              /etc/debootstrap/packages
143       --nokernel           Skip installation of default kernel images.
144       --nointerfaces       Do not copy /etc/network/interfaces from host system
145                            to target system.
146                            (This option is automatically enabled when using --vmfile.)
147       --defaultinterfaces  Install a default /etc/network/interfaces file (enabling
148                            DHCP for eth0) instead of taking over config from host system.
149       --debconf <file>     Pre-seed packages using specified pre-seed db file.
150       --grmlrepos          Enable Grml's Debian repository (deb.grml.org).
151       --backportrepos      Enable Debian's backports repository (backports.debian.org).
152       --keep_src_list      Do not overwrite user provided apt sources.list.
153       --contrib            Enable 'contrib' in COMPONENTS (defaults to 'main' only).
154       --non-free           Enable non-free / non-free-firmware in COMPONENTS (defaults to 'main' only).
155       --hostname <name>    Hostname of Debian system.
156       --nopassword         Do not prompt for the root password.
157       --password <pwd>     Use specified password as password for user root.
158       --sshcopyauth        Use ${HOME}/.ssh/authorized_keys to authorise root login on the target system.
159       --sshcopyid          Use locally available public keys to authorise root login on the target system.
160       --bootappend <line>  Add specified appendline to kernel whilst booting.
161       --chroot-scripts <d> Execute chroot scripts from specified directory.
162       --pre-scripts <dir>  Execute scripts from specified directory (before chroot-scripts).
163       --scripts <dir>      Execute scripts from specified directory (after chroot-scripts).
164       --remove-configs     Delete grml-debootstrap configuration files from installed system.
165
166 Other options:
167
168   -v, --verbose            Increase verbosity.
169       --debug              Execute in very verbose way.
170   -h, --help               Print this usage information and exit.
171   -V, --version            Show summary of options and exit.
172
173 Usage examples can be found in the grml-debootstrap manpage.
174 Send bugreports to the grml-team: bugs (at) grml.org || https://grml.org/bugs/
175 "
176 }
177
178 if [ "$1" = '-h' ] || [ "$1" = '-help' ] || [ "$1" = "--help" ] ; then
179    usage
180    echo 'Please notice that this script requires root permissions!'
181    exit 0
182 fi
183 # }}}
184
185 # early helper functions {{{
186 # skip colors when running within a dumb terminal
187 if [ "${TERM}" = "dumb" ] ; then
188   GOOD=
189   BAD=
190   WARN=
191   NORMAL=
192 else
193   GOOD='\e[32;01m'
194   BAD='\e[31;01m'
195   WARN='\e[33;01m'
196   NORMAL='\e[0m'
197 fi
198
199 einfo() {
200   einfon "$1\\n"
201   return 0
202 }
203
204 einfon() {
205   [ "${RC_ENDCOL}" != "yes" ] && [ "${LAST_E_CMD}" = "ebegin" ] && echo
206   printf " %s*%s $*" "${GOOD}" "${NORMAL}"
207   LAST_E_CMD=einfon
208   return 0
209 }
210
211 ewarn() {
212   printf " %s*%s $*\\n" "${WARN}" "${NORMAL}"
213   return 0
214 }
215
216 eerror() {
217   [ "${RC_ENDCOL}" != "yes" ] && [ "${LAST_E_CMD}" = "ebegin" ] && echo
218   printf " %s*%s $*\\n" "${BAD}" "${NORMAL}" >&2
219   LAST_E_CMD=eerror
220   return 0
221 }
222
223 eend() {
224   local retval="${1:-0}"
225   shift
226   if [ "$retval" -gt 0 ]; then
227     printf " %s-> Failed (rc=%s)%s\\n" "${BAD}" "${retval}" "${NORMAL}"
228   fi
229   return "$retval"
230 }
231
232 check4root(){
233   if [ "$(id -u 2>/dev/null)" != 0 ] ; then
234     echo 1>&2 "Error: please run this script with uid 0 (root)." ; return 1
235   fi
236 }
237
238 check4progs(){
239   local RC=''
240   for arg in "$@" ; do
241     command -v "$arg" >/dev/null 2>&1 || RC="$arg"
242   done
243   if [ -n "$RC" ] ; then
244      echo "$RC not installed"
245      return 1
246   fi
247 }
248 # }}}
249
250 # helper functions {{{
251 cleanup() {
252   if [ -n "$CHROOT_VARIABLES" ] ; then
253     einfo "Removing ${CHROOT_VARIABLES}" ; rm "$CHROOT_VARIABLES" || eend $?
254   fi
255
256   if [ -n "$STAGES" ] ; then
257     einfo "Removing ${STAGES}" ; rmdir "$STAGES" || eend $?
258   fi
259
260   try_umount 3 "${MNTPOINT}"/boot/efi
261
262   # Remove temporary mountpoint again
263   if echo "$MNTPOINT" | grep -q '/mnt/debootstrap\.' ; then
264     if [ -d "$MNTPOINT" ] ; then
265       rmdir "$MNTPOINT" || true
266     fi
267   fi
268
269   # make sure $TARGET is not mounted when exiting grml-debootstrap
270   if [ -n "$MNTPOINT" ] ; then
271     if grep -q "$MNTPOINT" /proc/mounts ; then
272       # make sure nothing is left inside chroot so we can unmount it
273       for service in ssh mdadm ; do
274         if [ -x "${MNTPOINT}/etc/init.d/${service}" ] ; then
275           chroot "$MNTPOINT" "/etc/init.d/${service}" stop
276         fi
277       done
278
279       [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount -a >/dev/null 2>&1 || true
280
281       # ugly, but make sure we really don't leave anything (/proc /proc and
282       # /dev /dev are intended, trying to work around timing issues, see #657023)
283       for ARG in /run/udev /sys /proc /proc /dev/pts /dev/pts /dev /dev ; do
284         [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount $ARG >/dev/null 2>&1 || true
285         umount "$MNTPOINT"/$ARG >/dev/null 2>&1 || true
286       done
287
288       if [ -n "$ISODIR" ] ; then
289         try_umount 3 "$MNTPOINT/$ISODIR" >/dev/null 2>&1 || true
290       fi
291
292       if [ -n "$DIRECTORY" ] ; then
293         einfo "Not unmounting $MNTPOINT as you requested me to install into a directory of your own choice."
294       else
295         einfo "Unmounting $MNTPOINT"
296         try_umount 3 "$MNTPOINT"
297       fi
298
299       if [ -n "$STAGES" ] ; then
300         echo -n "Removing stages directory ${STAGES}: "
301         rm -rf "$STAGES" && echo 'done'
302       fi
303
304       # remove directory only if we used the default with process id inside the name
305       if echo "$MNTPOINT" | grep -q '/mnt/debootstrap\.' ; then
306         if [ -d "$MNTPOINT" ] ; then
307           einfo "Removing directory ${MNTPOINT}"
308           rmdir "$MNTPOINT" || eend $?
309         fi
310       fi
311     fi
312   fi
313
314   if [ -n "${ORIG_TARGET}" ] ; then
315     einfo "Removing loopback mount of file ${ORIG_TARGET}."
316     kpartx -d "${ORIG_TARGET}" || eend $?
317     # Workaround for a bug in kpartx which doesn't clean up properly,
318     # see Debian Bug #891077 and Github-PR grml/grml-debootstrap#112
319     if dmsetup ls | grep -q "^${LOOP_PART} "; then
320       kpartx -d "/dev/${LOOP_DISK}" >/dev/null || eend $?
321     fi
322   fi
323 }
324
325 # we want to exit smoothly and clean:
326 bailout(){
327   eend "$1" || true
328
329   cleanup
330
331   [ -n "$1" ] && EXIT="$1" || EXIT="1"
332   [ -n "$2" ] && einfo "Notice: remove $STAGES/$2 to reexecute the stage"
333
334   exit "$EXIT"
335 }
336 trap bailout HUP INT QUIT TERM
337
338 # we want to execute all the functions only once, simple check for it:
339 stage() {
340   if [ -n "$2" ] ; then
341      echo "$2" > "${STAGES}/${1}"
342      return 0
343   elif grep -q 'done' "${STAGES}/${1}" 2>/dev/null ; then
344      ewarn "Notice: stage $1 has been executed already, skipping execution therefore."
345      ewarn "  To reexecute it clean up the according directory inside $STAGES"
346      return 1
347   fi
348 }
349 # }}}
350
351 # source main configuration file {{{
352 if [ -r /etc/debootstrap/config ] ; then
353   bash -n /etc/debootstrap/config
354   # shellcheck disable=SC1091
355   . /etc/debootstrap/config
356 fi
357 # }}}
358
359 # cmdline handling {{{
360 CMDLINE_OPTS=mirror:,iso:,release:,target:,mntpoint:,debopt:,defaultinterfaces,interactive,nodebootstrap,nointerfaces,nokernel,nopackages,filesystem:,config:,confdir:,packages:,chroot-scripts:,scripts:,post-scripts:,pre-scripts:,debconf:,vm,vmfile,vmsize:,vmefi,keep_src_list,hostname:,password:,nopassword,grmlrepos,backportrepos,bootappend:,grub:,efi:,arch:,insecure,verbose,help,version,force,debug,contrib,non-free,remove-configs,sshcopyid,sshcopyauth
361
362 if ! _opt_temp=$(getopt --name grml-debootstrap -o +m:i:r:t:p:c:d:vhV --long \
363   $CMDLINE_OPTS -- "$@"); then
364   eerror "Try 'grml-debootstrap --help' for more information."
365   bailout 1
366 fi
367 eval set -- "$_opt_temp"
368
369 while :; do
370   case "$1" in
371
372   # == Bootstrap options
373   --mirror|-m)         # Mirror which should be used for apt-get/aptitude
374     shift; _opt_mirror="$1"
375     ;;
376   --iso|-i)            # Mountpoint where a Debian ISO is mounted to
377     shift; _opt_iso="$1"
378     ;;
379   --release|-r)        # Release of new Debian system
380     shift; _opt_release="$1"
381     ;;
382   --target|-t)         # Target partition (/dev/...) or directory
383     shift; _opt_target="$1"
384     ;;
385   --vm)                # Virtual machine image (no file)
386     _opt_vm="T"
387     ;;
388   --vmfile)            # Virtual machine file
389     _opt_vmfile="T"
390     ;;
391   --vmsize)            # size of Virtual machine file
392     shift; _opt_vmsize="$1"
393     ;;
394   --vmefi)            # Create an EFI boot partition for the VM
395     _opt_vmefi="T"
396     ;;
397   --mntpoint|-p)       # Mountpoint used for mounting the target system
398     shift; _opt_mntpoint="$1"
399     ;;
400   --debopt)            # Extra parameters passed to the debootstrap command
401     shift; _opt_debopt="$1"
402     ;;
403   --filesystem)        # Filesystem that should be used
404     shift; _opt_filesystem="$1" ; FILESYSTEM="${_opt_filesystem}"
405     ;;
406   --interactive)       # Use interactive mode (frontend)
407     _opt_interactive=T
408     ;;
409   --nodebootstrap)     # Skip debootstrap, only do configuration to the target
410     _opt_nodebootstrap=T
411     ;;
412   --nopackages)        # Skip installation of packages defined in /etc/debootstrap/packages
413     _opt_nopackages=T
414     ;;
415   --arch)              # Target architecutre
416     shift; _opt_arch="$1"
417     ;;
418   # just for backwards compatibility
419   --insecure)
420     _opt_insecure=T
421     ;;
422   #
423
424   # == Configuration options
425   --config|-c)         # Use specified configuration file, defaults to /etc/debootstrap
426     shift; _opt_config="$1"
427     ;;
428   --confdir|-d)        # Place of config files for debootstrap, defaults to /etc/debootstrap
429     shift; _opt_confdir="$1"
430     ;;
431   --packages)          # Install packages defined in specified file
432     shift; _opt_packages="$1"
433     _opt_packages_set=T
434     ;;
435   --debconf)           # Pre-seed packages using specified file
436     shift; _opt_debconf="$1"
437     _opt_debconf_set=T
438     ;;
439   --pre-scripts)       # Execute scripts from specified directory (before chroot-scripts).
440     shift; _opt_pre_scripts="$1"
441     _opt_pre_scripts_set=T
442     ;;
443   --scripts)           # Execute scripts from specified directory [NOTE: deprecated, replaced via --post-scripts]
444     shift; _opt_scripts="$1"
445     _opt_scripts_set=T
446     ;;
447   --post-scripts)       # Execute scripts from specified directory
448     shift; _opt_post_scripts="$1"
449     _opt_post_scripts_set=T
450     ;;
451   --chroot-scripts)   # Execute chroot scripts from specified directory
452     shift; _opt_chroot_scripts="$1"
453     _opt_chroot_scripts_set=T
454     ;;
455   --keep_src_list)     # Do not overwrite user provided apt sources.list
456     _opt_keep_src_list=T
457     ;;
458   --hostname)          # Hostname of Debian system
459     shift; _opt_hostname="$1"
460     ;;
461   --password)          # Use specified password as password for user root
462     shift; _opt_password="$1"
463     ;;
464   --defaultinterfaces) # Install default /etc/network/interfaces
465     _opt_defaultinterfaces=T
466     ;;
467   --nointerfaces)      # Skip installation of /etc/network/interfaces
468     _opt_nointerfaces=T
469     ;;
470   --nokernel)          # Skip installation of default kernel images
471     _opt_nokernel=T
472     ;;
473   --nopassword)        # Skip password dialog
474     _opt_nopassword=T
475     ;;
476   --sshcopyid)         # Use locally available public keys to authorise root login on the target system
477     _opt_sshcopyid=T
478     ;;
479   --sshcopyauth)       # Use .ssh/authorized_keys to authorise root login on the target system
480     _opt_sshcopyauth=T
481     ;;
482   --grmlrepos)         # Enable Grml repository
483     _opt_grmlrepos=T
484     ;;
485   --backportrepos)     # Enable Debian backports repository
486     _opt_backportrepos=T
487     ;;
488   --bootappend)        # Add specified appendline to kernel whilst booting
489     shift; _opt_bootappend="$1"
490     ;;
491   --grub)              # Target for grub installation. Use grub syntax for specifying
492     shift; _opt_grub="$1"
493     ;;
494   --efi)               # Target for EFI boot installation
495     shift; _opt_efi="$1"
496     ;;
497   --contrib)           # Add 'contrib' to list of components
498     _opt_contrib=T
499     ;;
500   --non-free)          # Add 'non-free' to list of components
501     _opt_non_free=T
502     ;;
503   --remove-configs)    # Drop config files from installed system
504     _opt_remove_configs=T
505     ;;
506
507   # == Other options
508   --verbose|-v)        # Increase verbosity
509     if [ "$_opt_verbose" ]; then
510       _opt_verbose=$( _opt_verbose + 1 )
511     else
512       _opt_verbose=1
513     fi
514     ;;
515   --debug)             # Execute in debug mode
516     _opt_debug=T
517     ;;
518   --help|-h)           # Print usage information and exit
519     _opt_help=T
520     ;;
521   --version|-V)        # Show version information and exit
522     _opt_version=T
523     ;;
524   --force)             # Do not prompt for user input
525     _opt_force=T
526     ;;
527   --)
528     shift; break
529     ;;
530   *)
531     eerror "Internal getopt error!"; eend 1 ; exit 1
532     ;;
533   esac
534   shift
535 done
536
537 # == business-logic of command line parameter-processing
538
539 # source configuration file in <confdir> if supplied. {{{
540 [ "$_opt_confdir" ] && {
541   CONFFILES=$_opt_confdir
542   einfo "Using config files under $CONFFILES/."
543   if ! [ -r "$CONFFILES/config" ] ; then
544     eerror "Error: config file $CONFFILES/config not found."; bailout 1
545   fi
546   # shellcheck disable=SC1091 source=config
547   if ! . "$CONFFILES/config" ; then
548     eerror "Error reading config file $CONFFILES/config" ; bailout 1
549   fi
550   # restore the command line parameter value
551   CONFFILES=$_opt_confdir
552 }
553 # }}}
554
555 [ "$_opt_mirror" ]              && MIRROR=$_opt_mirror
556 [ "$_opt_iso" ]                 && ISO=$_opt_iso
557 [ "$_opt_release" ]             && RELEASE=$_opt_release
558 [ "$_opt_target" ]              && TARGET=$_opt_target
559 [ "$_opt_vm" ]                  && VIRTUAL=1
560 [ "$_opt_vmfile" ]              && VMFILE=1 && VIRTUAL=1
561 [ "$_opt_vmsize" ]              && VMSIZE=$_opt_vmsize
562 [ "$_opt_vmefi" ]               && VMEFI=1
563 [ "$_opt_mntpoint" ]            && MNTPOINT=$_opt_mntpoint
564 [ "$_opt_debopt" ]              && DEBOOTSTRAP_OPT=$_opt_debopt
565 [ "$_opt_interactive" ]         && INTERACTIVE=1
566 [ "$_opt_config" ]              && CONFIGFILE=$_opt_config
567 [ "$_opt_filesystem" ]          && MKFS="mkfs.$_opt_filesystem"
568 [ "$_opt_packages_set" ]        && PACKAGES='yes'
569 [ "$_opt_nopackages" ]          && PACKAGES=''
570 [ "$_opt_debconf_set" ]         && DEBCONF='yes'
571 [ "$_opt_post_scripts_set" ]    && POST_SCRIPTS='yes'
572 [ "$_opt_pre_scripts_set" ]     && PRE_SCRIPTS='yes'
573 [ "$_opt_chroot_scripts_set" ]  && CHROOT_SCRIPTS='yes'
574 [ "$_opt_keep_src_list" ]       && KEEP_SRC_LIST='yes'
575 [ "$_opt_grmlrepos" ]           && GRMLREPOS='yes'
576 [ "$_opt_backportrepos" ]       && BACKPORTREPOS='yes'
577 [ "$_opt_hostname" ]            && HOSTNAME=$_opt_hostname
578 [ "$_opt_password" ]            && ROOTPASSWORD=$_opt_password
579 [ "$_opt_nopassword" ]          && NOPASSWORD='yes'
580 [ "$_opt_defaultinterfaces" ]   && USE_DEFAULT_INTERFACES="true"
581 [ "$_opt_nointerfaces" ]        && NOINTERFACES="true"
582 [ "$_opt_nokernel" ]            && NOKERNEL="true"
583 [ "$_opt_sshcopyid" ]           && SSHCOPYID="true"
584 [ "$_opt_sshcopyauth" ]         && SSHCOPYAUTH="true"
585 [ "$_opt_bootappend" ]          && BOOT_APPEND=$_opt_bootappend
586 [ "$_opt_grub" ]                && GRUB=$_opt_grub
587 [ "$_opt_efi" ]                 && EFI=$_opt_efi
588 [ "$_opt_arch" ]                && ARCH=$_opt_arch
589 [ "$_opt_insecure" ]            && echo "Warning: --insecure is deprecated, continuing anyway."
590 [ "$_opt_force" ]               && FORCE=$_opt_force
591 [ "$_opt_verbose" ]             && VERBOSE="-v"
592 [ "$_opt_debug" ]               && DEBUG="true"
593 [ "$_opt_remove_configs" ]      && REMOVE_CONFIGS="yes"
594
595 # make sure main is always included
596 [ -z "$COMPONENTS" ]            && COMPONENTS="main"
597 [ "$_opt_contrib" ]             && COMPONENTS="$COMPONENTS contrib"
598
599 case "${RELEASE}" in
600   jessie|stretch|buster|bullseye)
601     [ "$_opt_non_free" ] && COMPONENTS="$COMPONENTS non-free"
602     ;;
603   *)
604     [ "$_opt_non_free" ] && COMPONENTS="$COMPONENTS non-free-firmware non-free"
605     ;;
606 esac
607
608 # command line option checks
609 if [ "$_opt_scripts_set" ] ; then
610   ewarn "Deprecation NOTE: --scripts option is deprecated, please switch to --post-scripts instead."
611   SCRIPTS='yes' # deprecated since grml-debootstrap >=0.71
612 fi
613
614 if [ "$_opt_grub" ] && [ "$_opt_vmfile" ] ; then
615   eerror "The --grub option is incompatible with --vmfile, please drop it from your command line."
616   eerror "The --grub option is unneeded as GRUB will be installed automatically (unless GRUB_INSTALL='no')."
617   bailout 1
618 fi
619
620 if [ "${_opt_sshcopyid}" ] && [ "${_opt_sshcopyauth}" ] ; then
621   eerror "The --sshcopyid option is incompatible with --sshcopyauth, please drop either of them from your command line."
622   bailout 1
623 fi
624
625 if [ -n "$ISO" ] && [[ "$DEBOOTSTRAP" =~ mmdebstrap$ ]] ; then
626   eerror "The ISO option is incompatible with usage of mmdebstrap for bootstrapping."
627   eerror "Either drop the --iso ... option or use plain debootstrap instead."
628   bailout 1
629 fi
630
631 if [ "$DEBUG" = "true" ] ; then
632   set -x
633 fi
634
635 [ "$_opt_help" ] && {
636   usage
637   exit 0
638 }
639
640 [ "$_opt_version" ] && {
641   einfo "$PN - version $VERSION"
642   einfo "Report bugs via https://github.com/grml/grml-debootstrap/ or https://grml.org/bugs/"
643   exit 0
644 }
645 # }}}
646
647 # check for root permissions {{{
648 if ! check4root ; then
649    echo "For usage instructions please execute '$PN --help'."
650    bailout 1
651 fi
652 # }}}
653
654 # make sure we have what we need {{{
655 check4progs "${DEBOOTSTRAP}" || bailout 1
656
657 if [ -n "$VIRTUAL" ] ; then
658   check4progs kpartx parted qemu-img || bailout 1
659 fi
660 # }}}
661
662 # source specified configuration file {{{
663 if [ -n "$CONFIGFILE" ] ; then
664   einfo "Reading specified config file $CONFIGFILE."
665   bash -n "$CONFIGFILE"
666   # shellcheck disable=SC1091 source=config
667   if ! . "$CONFIGFILE" ; then
668     eerror "Error reading config file $CONFIGFILE" ; bailout 1
669   fi
670 fi
671 # }}}
672
673 # backwards compatibility checks {{{
674 if [ -n "$GROOT" ] ; then
675    eerror "Error: you seem to have \$GROOT configured."
676    eerror "This variable is no longer supported, please visit the"
677    eerror "grml-debootstrap documentation for details."
678    bailout 1
679 fi
680
681 if echo "$GRUB" | grep -q '^hd' ; then
682    eerror "Error: this syntax for the grub configuration variable is no longer supported."
683    eerror "Please do not use hd... any longer but /dev/sdX instead."
684    bailout 1
685 fi
686 # }}}
687
688 # welcome screen {{{
689 welcome_dialog()
690 {
691    dialog --title "$PN" --yesno "Welcome to the interactive configuration of ${PN}.
692 Do you want to continue installing Debian using this frontend?" 0 0 || bailout 0
693 }
694 # }}}
695
696 # ask for target {{{
697 prompt_for_target()
698 {
699   AVAILABLE_PARTITIONS=$(LANG=C fdisk -l 2>/dev/null | \
700                sed 's/*//' | \
701                grep -v 'Extended$' | \
702                gawk -v num=0 -v ORS=' ' '/^\/dev\// {print $1}'; ls /dev/md[0-9]* 2>/dev/null || true);
703
704   if [ -z "$AVAILABLE_PARTITIONS" ] ; then
705      dialog --title "$PN" --trim \
706      --msgbox "Sorry, no partitions found. Please configure your
707      harddisks (see /proc/partitions) using a tool like fdisk,
708      cfdisk, gpart, gparted,..." 0 0 || bailout 1
709   fi
710
711   PARTITION_LIST=$(for i in $AVAILABLE_PARTITIONS ; do
712                      fs="$(blkid -s TYPE -o value "$i" 2>/dev/null)"
713                      [ -n "$fs" ] || fs='[no_filesystem_yet]'
714                      echo "$i" "$fs"
715                      unset fs
716                    done)
717
718   # shellcheck disable=SC2086
719   TARGET=$(dialog --title "$PN" --single-quoted --stdout \
720          --menu "Please select the target partition:" 0 0 0 \
721          $PARTITION_LIST) || bailout 1
722 }
723 # }}}
724
725 # ask for bootmanager {{{
726 prompt_for_bootmanager()
727 {
728   ADDITIONAL_PARAMS=""
729
730   if echo "$TARGET" | grep -q "/dev/md" ; then
731      MBRPART="all disks of Software RAID $TARGET"
732   else
733      # figure out whole disk device
734      found=
735      for device in /dev/disk/by-id/*
736      do
737         [ "$(readlink -f "$device")" = "${TARGET}" ] || continue
738         found=1
739         break
740      done
741      # shellcheck disable=SC2001
742      [ -n "$found" ] && MBRDISK=$(echo "${device}" | sed -e 's/-part[0-9][0-9]*$//')
743      if [ -e "$MBRDISK" ]; then
744         MBRDISK=$(readlink -f "$MBRDISK")
745      else
746         # fall back to old behaviour
747         # shellcheck disable=SC2001
748         MBRDISK=$(echo "${TARGET}" | sed -e 's/[0-9][0-9]*$//')
749      fi
750
751      MBRPART="MBR of $MBRDISK"
752   fi
753
754   for device in cciss/c0d0 sda hda; do
755     if [ "/dev/$device" != "${MBRDISK}" ]; then
756       grep -q $device /proc/partitions && \
757       ADDITIONAL_PARAMS="$ADDITIONAL_PARAMS:$device:install bootmanager grub into MBR of /dev/$device"
758     fi
759   done
760   ADDITIONAL_PARAMS=${ADDITIONAL_PARAMS#:}
761
762   OIFS="$IFS"; IFS=:
763
764   # shellcheck disable=SC2086
765   GETMBR=$(dialog --stdout --title "$PN" --default-item mbr \
766           --menu "Where do you want to install the bootmanager grub?" 0 0 0 \
767             mbr       "install bootmanager into $MBRPART" \
768             nowhere   "do not install bootmanager at all" \
769           ${ADDITIONAL_PARAMS}) || bailout 3
770   IFS="$OIFS"
771
772   case "$GETMBR" in
773     mbr)
774       # /dev/md0: has to be installed in MBR of /dev/md0 and not in /dev/md:
775       if echo "$TARGET" | grep -q "/dev/md" ; then
776         GRUB="$TARGET"
777       else
778         GRUB="$MBRDISK"
779       fi
780       ;;
781     hda)
782       GRUB="/dev/hda"
783       ;;
784     sda)
785       GRUB="/dev/sda"
786       ;;
787     nowhere)
788       GRUB=''
789       ;;
790   esac
791 }
792 # }}}
793
794 # ask for Debian release {{{
795 prompt_for_release()
796 {
797   [ -n "$RELEASE" ] && DEFAULT_RELEASE="$RELEASE" || DEFAULT_RELEASE='bullseye'
798   RELEASE="$(dialog --stdout --title "${PN}" --default-item $DEFAULT_RELEASE --menu \
799             "Please enter the Debian release you would like to use for installation:" \
800             0 50 8 \
801             buster   Debian/10 \
802             bullseye Debian/11 \
803             bookworm Debian/12 \
804             sid      Debian/unstable)" \
805             || bailout
806 }
807 # }}}
808
809 # ask for hostname {{{
810 prompt_for_hostname()
811 {
812   HOSTNAME="$(dialog --stdout --title "${PN}" --inputbox \
813             "Please enter the hostname you would like to use for installation:" \
814             0 0 "$HOSTNAME")" || bailout
815 }
816 # }}}
817
818 # ask for password {{{
819 prompt_for_password()
820 {
821   if [ "$_opt_nopassword" ] ; then
822     einfo "Skip asking for root password as requested."
823     return 0
824   fi
825
826   ROOTPW1='PW1'
827   ROOTPW2='PW2'
828   while [ "$ROOTPW1" != "$ROOTPW2" ]; do
829     ROOTPW1=$(dialog --insecure --stdout --title "${PN}" --passwordbox \
830     "Please enter the password for the root account:" 10 60) || bailout
831
832     ROOTPW2=$(dialog --insecure --stdout --title "${PN}" --passwordbox \
833     "Please enter the password for the root account again for \
834     confirmation:" 10 60) || bailout
835
836     if [ "$ROOTPW1" != "$ROOTPW2" ]; then
837       dialog --stdout --title "${PN}" --ok-label \
838         "Retry" --msgbox "Passwords do not match!" 10 60
839     fi
840   done
841   ROOTPASSWORD="$ROOTPW1"
842 }
843 # }}}
844
845 # ask for Debian mirror {{{
846 prompt_for_mirror()
847 {
848   [ -n "$ISO" ] && DEFAULT_MIRROR='local' || DEFAULT_MIRROR='net'
849
850   CHOOSE_MIRROR=$(dialog --stdout --title "$PN" --default-item $DEFAULT_MIRROR \
851           --menu "Where do you want to install from?" 0 0 0 \
852             net   "install via network (downloading from mirror)" \
853             local "install from local directory/mirror"
854           )
855
856   if [ "$CHOOSE_MIRROR" = 'net' ] ; then
857      [ -n "$MIRROR" ] || MIRROR='http://deb.debian.org/debian'
858      MIRROR="$(dialog --stdout --title "${PN}" --inputbox \
859                "Please enter Debian mirror you would like to use for installing packages." \
860                0 0 $MIRROR)" || bailout
861
862   else # CHOOSE_MIRROR == local
863      [ -n "$ISO" ] || ISO='/mnt/mirror'
864      ISO="$(dialog --stdout --title "${PN}" --inputbox \
865                "Please enter directory name you would like to use for installing packages." \
866                0 0 $ISO)" || bailout
867   fi
868 }
869 # }}}
870
871 # software raid setup {{{
872 config_swraid_setup()
873 {
874 TMPFILE=$(mktemp)
875
876 # Currently we support only raid1:
877 RAIDLEVEL='raid1'
878
879 MD_LIST=$(for i in $(seq 0 9) ; do
880             awk '{print $4}' /proc/partitions | grep -q "md$i" || \
881             echo "/dev/md$i /dev/md$i"
882           done)
883
884 # shellcheck disable=SC2086
885 TARGET=$(dialog --stdout --title "$PN" --default-item /dev/md0 \
886 --menu "Which device do you want to use for ${RAIDLEVEL}?
887
888 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 \
889 $MD_LIST) || bailout 20
890
891 AVAILABLE_PARTITIONS=$(LANG=C fdisk -l 2>/dev/null | \
892              sed 's/*//' | \
893              grep -v 'Extended$' | \
894              gawk -v num=0 -v ORS=' ' '/^\/dev\// {print $1}')
895 [ -n "$AVAILABLE_PARTITIONS" ] || echo "Fatal error: no partitions available?"
896 PARTITION_LIST=$(for i in $AVAILABLE_PARTITIONS ; do
897                      echo "$i $(blkid -s TYPE -o value "$i" 2>/dev/null || echo '[no_filesystem_yet]') off"
898                  done)
899
900 # shellcheck disable=SC2086
901 dialog --title "$PN" --separate-output \
902        --checklist "Please select the partitions you would like to use for your $RAIDLEVEL on ${TARGET}:" 0 0 0 \
903        $PARTITION_LIST 2>"$TMPFILE" || bailout
904
905 SELECTED_PARTITIONS="$(cat "$TMPFILE")"
906
907 NUM_PARTITIONS=0
908 while IFS= read -r i; do
909   NUM_PARTITIONS=$(( NUM_PARTITIONS + 1 ))
910 done < "$TMPFILE"
911
912 ERRORFILE=$(mktemp)
913
914 local RC=0
915 # shellcheck disable=SC2086
916 yes | mdadm --create "${TARGET}" --level="${RAIDLEVEL}" \
917       --raid-devices="${NUM_PARTITIONS}" ${SELECTED_PARTITIONS} >/dev/null 2>$ERRORFILE || RC=$?
918
919 if [ "$RC" = 0 ] ; then
920    dialog --title "$PN" --msgbox \
921    "Creating $TARGET was successful." 0 0
922    rm -f "$TMPFILE" "$ERRORFILE"
923 else
924    dialog --title "$PN" --msgbox \
925    "There was an error setting up $TARGET:
926
927 $(cat "$ERRORFILE")
928
929 Exiting." 0 0
930    rm -f "$TMPFILE" "$ERRORFILE"
931    bailout 1
932 fi
933
934 }
935
936 prompt_for_swraid()
937 {
938 if dialog --stdout --title "$PN" \
939           --defaultno --yesno "Do you want to configure Software RAID?
940
941 Please notice that only RAID level 1 is supported by ${PN} currently. Configuration will take place using mdadm." 0 0 ; then
942   config_swraid_setup
943 fi
944 }
945 # }}}
946
947 # user should recheck his configuration {{{
948 # support full automatic installation:
949 checkforrun() {
950    dialog --timeout 10 --title "$PN" \
951           --yesno "Do you want to stop at this stage?
952
953 Notice: you are running ${PN} in non-interactive mode.
954 ${PN} will install Debian ${RELEASE} on ${TARGET}.
955 Last chance to quit. Timeout of 10 seconds running....
956
957 Do you want to stop now?" 0 0 2>/dev/null
958 }
959 # }}}
960
961 # format efi partition {{{
962 format_efi_partition() {
963   if [ -z "$EFI" ] ; then
964     return 0
965   fi
966
967   if ! [ -b "$EFI" ] ; then
968     eerror "Specified efi argument [$EFI] not a valid block device."
969     bailout 1
970   fi
971
972   if fsck.vfat -bn "$EFI" >/dev/null; then
973     einfo "EFI partition $EFI seems to have a FAT filesystem, not modifying."
974   else
975     einfo "EFI partition $EFI doesn't seem to be formatted, creating filesystem."
976     if ! mkfs.fat -F32 -n "EFI" "$EFI" ; then
977       eerror "Error while creating filesystem on ${EFI}."
978       bailout 1
979     fi
980   fi
981 }
982 # }}}
983
984 # check for EFI support or try to enable it {{{
985 efi_support() {
986   local efivars_loaded=false
987   # this is for kernels versions before v3.10, which didn't provide efivarfs yet
988   if modprobe efivars &>/dev/null ; then
989     efivars_loaded=true
990   fi
991   # kernel versions v3.10 and newer usually provide efivarfs
992   if modprobe efivarfs &>/dev/null ; then
993     efivars_loaded=true
994   fi
995
996   if [ -d /sys/firmware/efi ] ; then
997     einfo "EFI support detected."
998     return 0
999   fi
1000
1001   if ! [ -d /sys/firmware/efi ] && [ "${efivars_loaded:-}" = "true" ] ; then
1002     einfo "EFI support detected, but system seems to be running in BIOS mode."
1003   fi
1004
1005   return 1
1006 }
1007 # }}}
1008
1009 # make sure the user is aware of the used configuration {{{
1010 checkconfiguration()
1011 {
1012
1013 if [ -z "$VIRTUAL" ] ; then
1014   if efi_support ; then
1015     if [ -z "$_opt_efi" ] ; then
1016       ewarn "EFI support detected but no --efi option given, please consider enabling it."
1017     fi
1018   else
1019     if [ -n "$_opt_efi" ] ; then
1020       eerror "EFI option used but no EFI support detected."
1021       bailout 1
1022     fi
1023   fi
1024 fi
1025
1026 if [ -n "$AUTOINSTALL" ] ; then
1027    if checkforrun ; then
1028       eerror "Exiting as requested"
1029       bailout 1
1030    fi
1031 elif [ -n "$INTERACTIVE" ] ; then
1032
1033    INFOTEXT="Please recheck configuration before execution:
1034    "
1035    [ -n "$TARGET" ]  && INFOTEXT="$INFOTEXT
1036    Target:          $TARGET"
1037    [ -n "$GRUB" ]    && INFOTEXT="$INFOTEXT
1038    Install grub:    $GRUB"
1039    [ -n "$EFI" ]    && INFOTEXT="$INFOTEXT
1040    Install efi:     $EFI"
1041    [ -n "$RELEASE" ] && INFOTEXT="$INFOTEXT
1042    Using release:   $RELEASE"
1043    [ -n "$HOSTNAME" ] && INFOTEXT="$INFOTEXT
1044    Using hostname:  $HOSTNAME"
1045    [ -n "$MIRROR" ]  && INFOTEXT="$INFOTEXT
1046    Using mirror:    $MIRROR"
1047    [ -n "$ISO" ]  && INFOTEXT="$INFOTEXT
1048    Using ISO:       $ISO"
1049    [ -n "$ARCH" ]  && INFOTEXT="$INFOTEXT
1050    Using arch:      $ARCH"
1051    [ -n "$CONFFILES" ] && INFOTEXT="$INFOTEXT
1052    Config files:    $CONFFILES"
1053
1054    INFOTEXT="$INFOTEXT
1055
1056 Is this ok for you? Notice: selecting 'No' will exit ${PN}."
1057
1058    dialog --title "$PN" --no-collapse \
1059           --yesno "$INFOTEXT" 0 0 || bailout 0
1060
1061 else # if not running automatic installation display configuration and prompt for execution:
1062    einfo "$PN [${VERSION}] - Please recheck configuration before execution:"
1063    echo
1064    echo "   Target:          $TARGET"
1065
1066    # do not display if MNTPOINT is the default one
1067    case "$MNTPOINT" in /mnt/debootstrap*) ;; *) echo "   Mount point:     $MNTPOINT" ;; esac
1068
1069    if [ -n "$VIRTUAL" ] && [ "$GRUB_INSTALL" = 'yes' ] ; then
1070       echo "   Install grub:    yes"
1071       [ -n "$VMEFI" ]   && echo "   Install efi:     yes"   || echo "   Install efi:     no"
1072    else
1073      [ -n "$GRUB" ]     && echo "   Install grub:    $GRUB" || echo "   Install grub:    no"
1074      [ -n "$EFI" ]      && echo "   Install efi:     $EFI"  || echo "   Install efi:     no"
1075    fi
1076
1077    [ -n "$RELEASE" ]   && echo "   Using release:   $RELEASE"
1078    [ -n "$HOSTNAME" ]  && echo "   Using hostname:  $HOSTNAME"
1079    [ -n "$MIRROR" ]    && echo "   Using mirror:    $MIRROR"
1080    [ -n "$ISO" ]       && echo "   Using ISO:       $ISO"
1081    [ -n "$ARCH" ]      && echo "   Using arch:      $ARCH"
1082    [ -n "$CONFFILES" ] && echo "   Config files:    $CONFFILES"
1083    if [ -n "$VIRTUAL" ] ; then
1084       echo "   Deploying as Virtual Machine."
1085       if [ -n "$VMSIZE" ] && [ -n "$VMFILE" ]; then
1086          echo "   Using Virtual Disk file with size of ${VMSIZE}."
1087       fi
1088    fi
1089
1090    if [ ! -t 0 ] && [ -z "$ROOTPASSWORD" ] && [ -z "$NOPASSWORD" ] ; then
1091       echo
1092       echo "   You do not have a TTY allocated, your password will be shown in"
1093       echo "   plaintext on the terminal! If you are using SSH, try its -t option!"
1094    fi
1095
1096    echo
1097    echo "   Important! Continuing will delete all data from ${TARGET}!"
1098
1099    if [ -n "$FORCE" ] ; then
1100      einfo "Skip user acknowledgement as requested via --force option."
1101    else
1102      echo
1103      einfon "Is this ok for you? [y/N] "
1104      read -r a
1105      if ! [ "$a" = 'y' ] || [ "$a" = 'Y' ] ; then
1106         eerror "Exiting as requested."
1107         bailout 1
1108      fi
1109    fi
1110 fi
1111 }
1112 # }}}
1113
1114 # interactive mode {{{
1115 interactive_mode()
1116 {
1117   check4progs dialog || bailout 1
1118
1119   welcome_dialog
1120
1121   prompt_for_release
1122
1123   prompt_for_swraid
1124
1125   prompt_for_target
1126
1127   prompt_for_bootmanager
1128
1129   prompt_for_hostname
1130
1131   prompt_for_password
1132
1133   prompt_for_mirror
1134 }
1135
1136 # run interactive mode if we didn't get the according configuration yet
1137 if [ -z "$TARGET" ] || [ -n "$INTERACTIVE" ] ; then
1138    # only target might be unset, so make sure the INTERACTIVE flag is set as well
1139    INTERACTIVE=1
1140    interactive_mode
1141 fi
1142 # }}}
1143
1144 # architecture setup {{{
1145 if [ -n "$ARCH" ] ; then
1146    ARCHCMD="--arch $ARCH"
1147    ARCHINFO=" (${ARCH})"
1148 else
1149    ARCH="$(dpkg --print-architecture)"
1150    ARCHCMD="--arch $ARCH"
1151    ARCHINFO=" (${ARCH})"
1152 fi
1153
1154 if [ -z "${ARCH:-}" ] ; then
1155   eerror 'Architecture neither set (environment variable ARCH), nor could be automatically identified (using dpkg).'
1156   eerror 'Consider setting the --arch ... option.'
1157   bailout 1
1158 fi
1159 # }}}
1160
1161 # It is not possible to build amd64 on i686. {{{
1162 CURRENT_ARCH="$(uname -m)"
1163 if [ "$CURRENT_ARCH" != "x86_64" ] ; then
1164    if [ "$ARCH" = "amd64" ] ; then
1165       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."
1166       bailout 1
1167    fi
1168 fi
1169 # }}}
1170
1171 # Support for generic release codenames is unavailable. {{{
1172 if [ "$RELEASE" = "stable" ] || [ "$RELEASE" = "testing" ] ; then
1173    eerror "Generic release codenames (stable, testing) are unsupported. \
1174 Please use specific codenames such as bullseye or bookworm."
1175    bailout 1
1176 fi
1177 # }}}
1178
1179 checkconfiguration
1180
1181 # finally make sure at least $TARGET is set [the partition for the new system] {{{
1182 if [ -n "$TARGET" ] ; then
1183    SHORT_TARGET="${TARGET##*/}"
1184 else
1185    eerror "Please adjust $CONFFILES/config or..."
1186    eerror "... use the interactive version for configuration before running ${0}"
1187    bailout 1
1188 fi
1189 # }}}
1190
1191 # stages setup {{{
1192 if [ -z "$STAGES" ] ; then
1193    STAGES="/var/cache/grml-debootstrap/stages_${SHORT_TARGET}"
1194    [ -d "$STAGES" ] || mkdir -p "$STAGES"
1195 fi
1196
1197 if [ -r "$STAGES"/grml-debootstrap ] ; then
1198    if grep -q 'done' "${STAGES}/grml-debootstrap" ; then
1199       eerror "Error: grml-debootstrap has been executed already, won't continue therefore."
1200       eerror "If you want to re-execute grml-debootstrap just manually remove ${STAGES}"
1201    fi
1202 fi
1203 # }}}
1204
1205 # partition handling {{{
1206 PARTITION=''
1207 DIRECTORY=''
1208
1209 set_target_directory(){
1210     # assume we are installing into a directory, don't run mkfs and grub related stuff therefore
1211     DIRECTORY=1
1212     MNTPOINT="$TARGET"
1213     MKFS=''
1214     TUNE2FS=''
1215     FSCK=''
1216     # make sure we normalise the path to an absolute directory name so something like:
1217     #  mkdir -p foo/a bar/a; (cd foo; grml-debootstrap -t a)&; (cd bar; grml-debootstrap -t a)&; wait
1218     # works
1219     TARGET="$(readlink -f "$TARGET")"
1220 }
1221
1222 if [ -b "$TARGET" ] || [ -n "$VIRTUAL" ] ; then
1223     PARTITION=1
1224 else
1225     # $TARGET was not detected as block device, but we do not want to create target directory in /dev/
1226     if [[ $TARGET == "/dev/"* ]]; then
1227       eerror "Error: Will not create target directory $TARGET in /dev."
1228       eerror "  Please check the partition(s) of the blockdevice."
1229       bailout 1
1230     fi
1231     set_target_directory
1232 fi
1233 # }}}
1234
1235 # make sure we have the right syntax when using an iso image {{{
1236 if [ -n "$ISO" ] ; then
1237    case $ISO in
1238       file*) # do nothing
1239       ;;
1240       *)
1241       ISO=file:$ISO
1242       ;;
1243    esac
1244 fi
1245 ISODIR=${ISO##file:}
1246 ISODIR=${ISODIR%%/}
1247 # }}}
1248
1249 # Debian ISOs do not contain signed Release files {{{
1250 if [ -n "$ISO" ] ; then
1251     DEBOOTSTRAP_OPT="$DEBOOTSTRAP_OPT --no-check-gpg"
1252 fi
1253 # }}}
1254
1255 # create filesystem {{{
1256 mkfs() {
1257   if [ -n "$DIRECTORY" ] ; then
1258      einfo "Running grml-debootstrap on a directory, skipping mkfs stage."
1259      return 0
1260   fi
1261
1262   if grep -q "$TARGET" /proc/mounts ; then
1263     eerror "$TARGET already mounted, exiting to avoid possible damage. (Manually unmount $TARGET)"
1264     bailout 1
1265   fi
1266
1267   # mkfs.ext* might prompt with "/dev/sdX# contains a ext* file system
1268   # created on ... Proceed anyway? (y,n)" which we want to skip in force mode
1269   if [ -n "$MKFS" ] && [ -n "$FORCE" ] ; then
1270     case "$MKFS" in
1271       mkfs.ext*)
1272         einfo "Enabling force option (-F) for mkfs.ext* tool as requested via --force switch."
1273         MKFS_OPTS="$MKFS_OPTS -F"
1274         ;;
1275     esac
1276   fi
1277
1278   # starting with e2fsprogs 1.43~WIP.2015.05.18-1 mkfs.ext4 enables the metadata_csum feature
1279   # by default, which requires a recent version of tune2fs on the target system then,
1280   # so disable this feature for older Debian releases where it's known to be unsupported
1281   if [ -n "$MKFS" ] && [ "$MKFS" = "mkfs.ext4" ] ; then
1282     case "$RELEASE" in
1283       jessie)
1284         # assume a more recent version if we can't identify the version via dpkg-query
1285         local e2fsprogs_version
1286         e2fsprogs_version="$(dpkg-query --show --showformat='${Version}' e2fsprogs 2>/dev/null || echo 1.44)"
1287         if [ -n "$e2fsprogs_version" ] && dpkg --compare-versions "$e2fsprogs_version" ge '1.43~WIP.2015.05.18-1' ; then
1288           einfo "Disabling metadata_csum feature for $MKFS as $RELEASE doesn't support it."
1289           MKFS_OPTS="$MKFS_OPTS -O ^metadata_csum"
1290         fi
1291         ;;
1292     esac
1293   fi
1294
1295   # starting with e2fsprogs v1.47.0 mkfs.ext4 enables the metadata_csum_seed feature
1296   # by default, which requires Linux kernel >=4.4, e2fsprogs >=1.43, according GRUB etc.
1297   # Disable this feature for Debian releases older than bookworm
1298   if [ -n "$MKFS" ] && [ "$MKFS" = "mkfs.ext4" ] ; then
1299     case "$RELEASE" in
1300       jessie|stretch|buster|bullseye)
1301         local e2fsprogs_version
1302         # assume a more recent version if we can't identify the version via dpkg-query
1303         e2fsprogs_version="$(dpkg-query --show --showformat='${Version}' e2fsprogs 2>/dev/null || echo 1.47)"
1304         if [ -n "$e2fsprogs_version" ] && dpkg --compare-versions "$e2fsprogs_version" ge '1.43' ; then
1305           einfo "Disabling metadata_csum_seed feature for $MKFS as $RELEASE doesn't support it."
1306           MKFS_OPTS="$MKFS_OPTS -O ^metadata_csum_seed"
1307         fi
1308         ;;
1309     esac
1310   fi
1311
1312   if [ -n "$MKFS" ] ; then
1313
1314     if [ -n "${ARM_EFI_TARGET}" ] ; then
1315       einfo "Running mkfs.fat $MKFS_OPTS on $ARM_EFI_TARGET"
1316       mkfs.fat -n "EFI" "$ARM_EFI_TARGET"
1317       MKFS_OPTS="$MKFS_OPTS -L LINUX"
1318     fi
1319
1320     einfo "Running $MKFS $MKFS_OPTS on $TARGET"
1321     # shellcheck disable=SC2086
1322     "$MKFS" $MKFS_OPTS "$TARGET"
1323
1324     if [ "$FIXED_DISK_IDENTIFIERS" = "yes" ] ; then
1325       if ! echo "$MKFS" | grep -q "mkfs.ext" ; then
1326         eerror "Not changing disk uuid for $TARGET because $MKFS doesn't seem to match for ext{2,3,4} file system"
1327         bailout 1
1328       else
1329         einfo "Changing disk uuid for $TARGET to fixed (non-random) value $DISK_IDENTIFIER using tune2fs"
1330         tune2fs "$TARGET" -U "$DISK_IDENTIFIER" </dev/null
1331       fi
1332     fi
1333
1334     if [ -n "$VIRTUAL" ] && [ -n "$EFI_TARGET" ]; then
1335       einfo "Creating FAT filesystem on $EFI_TARGET"
1336       mkfs.fat -F32 -n "EFI" "$EFI_TARGET"
1337     fi
1338
1339     # make sure /dev/disk/by-uuid/... is up2date, otherwise grub
1340     # will fail to detect the uuid in the chroot
1341     if [ -n "$VIRTUAL" ] ; then
1342       einfo "Virtual environment doesn't require blockdev --rereadpt, skipping therefore"
1343     elif echo "$TARGET" | grep -q "/dev/md" ; then
1344       blockdev --rereadpt "${TARGET}"
1345     else
1346       # if we deploy to /dev/sdX# then let's see if /dev/sdX exists
1347       local main_device="${TARGET%%[0-9]*}"
1348       # sanity check to not try to e.g. access /dev/loop if we get /dev/loop0
1349       if [ -f "/sys/block/$(basename "${main_device}")/$(basename "${TARGET}")/dev" ] ; then
1350         blockdev --rereadpt "$main_device"
1351       else
1352         einfo "No underlying block device for $TARGET identified, skipping blockdev --rereadpt."
1353       fi
1354     fi
1355     # give the system 2 seconds, otherwise we might run into
1356     # race conditions :-/
1357     sleep 2
1358
1359   fi
1360 }
1361 # }}}
1362
1363 # retrieve ID_FS_UUID {{{
1364 identify_target_uuid() {
1365   local device="$1"
1366
1367   if ! [ -b "$device" ] ; then
1368     return 1
1369   fi
1370
1371   eval "$(blkid -o udev "$1" 2>/dev/null)"
1372
1373   if [ -n "$ID_FS_UUID" ] ; then
1374     echo "$ID_FS_UUID"
1375   else
1376     return 1
1377   fi
1378 }
1379 # }}}
1380
1381 # identify TARGET_UUID {{{
1382 mountpoint_to_blockdevice() {
1383   TARGET_UUID=''
1384
1385   TARGET_UUID=$(identify_target_uuid "$TARGET" 2>/dev/null || true)
1386   if [ -n "$TARGET_UUID" ] ; then
1387     einfo "Identified UUID $TARGET_UUID for $TARGET"
1388     return 0
1389   fi
1390
1391   # $TARGET might be a mountpoint and not a blockdevice, search for according entry
1392   for file in /sys/block/*/*/dev ; do
1393     if grep -q "^$(mountpoint -d "${TARGET}")$" "$file" ; then
1394       local dev
1395       dev="${file%/dev}"
1396       dev="/dev/${dev##*/}"
1397       TARGET_UUID=$(identify_target_uuid "$dev" 2>/dev/null || true)
1398
1399       if [ -n "$TARGET_UUID" ] ; then
1400         einfo "Identified UUID $TARGET_UUID for $TARGET (via $file)"
1401         return 0
1402       fi
1403     fi
1404   done
1405 }
1406 # }}}
1407
1408 # modify filesystem settings {{{
1409 tunefs() {
1410   if [ -n "$TUNE2FS" ] && echo "$MKFS" | grep -q "mkfs.ext" ; then
1411      einfo "Disabling automatic filesystem check on $TARGET via tune2fs"
1412      $TUNE2FS "$TARGET" </dev/null
1413   fi
1414 }
1415 # }}}
1416
1417 # mount the new partition or if it's a directory do nothing at all {{{
1418 mount_target() {
1419   if [ -n "$DIRECTORY" ] ; then
1420      einfo "Running grml-debootstrap on a directory, nothing to mount."
1421   else
1422      if grep -q "$TARGET" /proc/mounts ; then
1423         ewarn "$TARGET already mounted, continuing anyway."
1424      else
1425        if ! [ -d "${MNTPOINT}" ] ; then
1426           [ -n "$VIRTUAL" ] || mkdir -p "${MNTPOINT}"
1427        fi
1428        einfo "Mounting $TARGET to $MNTPOINT"
1429        mkdir -p "$MNTPOINT"
1430        mount -o rw,suid,dev "$TARGET" "$MNTPOINT"
1431      fi
1432   fi
1433   if [ -n "$ISODIR" ] ; then
1434      einfo "Mounting Debian image loopback to $MNTPOINT/$ISODIR."
1435      mkdir -p "$MNTPOINT/$ISODIR"
1436      mount --bind "$ISODIR" "$MNTPOINT/$ISODIR"
1437   fi
1438 }
1439 # }}}
1440
1441 # prepare VM image for usage with debootstrap {{{
1442 prepare_vm() {
1443   if [ -z "$VIRTUAL" ] ; then
1444      return 0 # be quiet by intention
1445   fi
1446
1447   if [ -b "$TARGET" ] && [ -n "$VMFILE" ] ; then
1448      eerror "Error: specified virtual disk target ($TARGET) is an existing block device."
1449      bailout 1
1450   fi
1451   if [ ! -b "$TARGET" ] && [ -z "$VMFILE" ] ; then
1452      eerror "Error: specified virtual disk target ($TARGET) does not exist yet."
1453      bailout 1
1454   fi
1455
1456   # make sure loop module is present and a usable loop device exists
1457   modprobe loop || true
1458   if ! losetup -f >/dev/null 2>&1; then
1459     eerror "Error finding usable loop device"
1460     bailout 1
1461   fi
1462
1463   # if dm-mod isn't available then kpartx will fail with
1464   # "Is device-mapper driver missing from kernel? [...]"
1465   modprobe dm-mod || true
1466   if ! grep -q 'device-mapper' /proc/misc >/dev/null 2>&1 ; then
1467     eerror "Device-mapper support missing in kernel."
1468     bailout 1
1469   fi
1470
1471   ORIG_TARGET="$TARGET" # store for later reuse
1472
1473   if [ -n "$VMFILE" ]; then
1474     qemu-img create -f raw "${TARGET}" "${VMSIZE}"
1475   fi
1476   if [ -n "$VMEFI" ]; then
1477     parted -s "${TARGET}" 'mklabel gpt'
1478     parted -s "${TARGET}" 'mkpart ESP fat32 1MiB 101MiB'
1479     parted -s "${TARGET}" 'set 1 boot on'
1480     parted -s "${TARGET}" 'mkpart bios_grub 101MiB 102MiB'
1481     parted -s "${TARGET}" 'set 2 bios_grub on'
1482     parted -s "${TARGET}" 'mkpart primary ext4 102MiB 100%'
1483
1484   else
1485     # arm64 support largely only exists for GPT
1486     if [ "$ARCH" = 'arm64' ]; then
1487       einfo "Setting up GPT partitions for arm64"
1488       parted -s "${TARGET}" 'mklabel gpt'
1489       parted -s "${TARGET}" 'mkpart ESP fat32 1MiB 10MiB'
1490       parted -s "${TARGET}" 'set 1 boot on'
1491       parted -s "${TARGET}" 'mkpart LINUX ext4 10MiB 100%'
1492     else
1493       parted -s "${TARGET}" 'mklabel msdos'
1494       if [ "$FIXED_DISK_IDENTIFIERS" = "yes" ] ; then
1495         einfo "Adjusting disk signature to a fixed (non-random) value"
1496         MBRTMPFILE=$(mktemp)
1497         dd if="${TARGET}" of="${MBRTMPFILE}" bs=512 count=1
1498         echo -en "\\x41\\x41\\x41\\x41" | dd of="${MBRTMPFILE}" conv=notrunc seek=440 bs=1
1499         dd if="${MBRTMPFILE}" of="${TARGET}" conv=notrunc
1500       fi
1501       parted -s "${TARGET}" 'mkpart primary ext4 4MiB 100%'
1502       parted -s "${TARGET}" 'set 1 boot on'
1503     fi
1504   fi
1505
1506   DEVINFO=$(kpartx -asv "$TARGET") # e.g. 'add map loop0p1 (254:5): 0 20477 linear 7:0 3' - will be multi-line for arm64
1507   if [ -z "${DEVINFO}" ] ; then
1508     eerror "Error setting up loopback device."
1509     bailout 1
1510   fi
1511
1512   # if we're building for arm64, we operate on the first line of $DEVINFO which is the EFI partition
1513   if [ "$ARCH" = 'arm64' ]; then
1514     LOOP_PART="${DEVINFO##add map }" # 'loop0p1 (254:5): 0 20477 linear 7:0 3'
1515     LOOP_PART="${LOOP_PART// */}"    # 'loop0p1'
1516     LOOP_DISK="${LOOP_PART%p*}"      # 'loop0'
1517     export ARM_EFI_TARGET="/dev/mapper/$LOOP_PART"
1518     DEVINFO=${DEVINFO##*$'\n'} # now set $DEVINFO to the last line which is the OS partition
1519   fi
1520
1521   # hopefully this always works as expected
1522   LOOP_PART="${DEVINFO##add map }" # 'loop0p1 (254:5): 0 20477 linear 7:0 3'
1523   LOOP_PART="${LOOP_PART// */}"    # 'loop0p1'
1524   if [ -n "$VMEFI" ]; then
1525     export EFI_TARGET="/dev/mapper/$LOOP_PART" # '/dev/mapper/loop0p1'
1526     LOOP_PART="${LOOP_PART%p1}p3"
1527   fi
1528   LOOP_DISK="${LOOP_PART%p*}"      # 'loop0'
1529   export TARGET="/dev/mapper/$LOOP_PART" # '/dev/mapper/loop0p1'
1530
1531   if [ -z "$TARGET" ] ; then
1532      eerror "Error: target could not be set to according /dev/mapper/* device."
1533      bailout 1
1534   fi
1535 }
1536 # }}}
1537
1538 # make VM image bootable {{{
1539 grub_install() {
1540   if [ -z "${VIRTUAL}" ] ; then
1541      return 0
1542   fi
1543   if [ "${GRUB_INSTALL}" != "yes" ] ; then
1544     einfo "Not installing GRUB as requested via \$GRUB_INSTALL=$GRUB_INSTALL"
1545     return 0
1546   fi
1547
1548   if ! mount "${TARGET}" "${MNTPOINT}" ; then
1549     eerror "Error: Mounting ${TARGET} failed, can not continue."
1550     bailout 1
1551   fi
1552
1553   if [ -n "${ARM_EFI_TARGET}" ]; then
1554     mkdir -p "${MNTPOINT}"/boot/efi
1555     if ! mount "${ARM_EFI_TARGET}" "${MNTPOINT}"/boot/efi ; then
1556       eerror "Error: Mounting ${ARM_EFI_TARGET} failed, can not continue."
1557       bailout 1
1558     fi
1559   fi
1560
1561   mount -t proc none "${MNTPOINT}"/proc
1562   mount -t sysfs none "${MNTPOINT}"/sys
1563   mount -t devtmpfs udev "${MNTPOINT}"/dev
1564   mount -t devpts devpts "${MNTPOINT}"/dev/pts
1565
1566   if [ -n "$ARM_EFI_TARGET" ]; then
1567     einfo "Installing Grub as bootloader into EFI."
1568
1569     chroot "${MNTPOINT}" grub-install --target=arm64-efi --efi-directory=/boot/efi --bootloader-id=debian --recheck --no-nvram --removable
1570   # Has chroot-script installed GRUB to MBR using grub-install (successfully), already?
1571   # chroot-script skips installation for unset ${GRUB}
1572   elif [[ -z "${GRUB}" ]] || ! dd if="${GRUB}" bs=512 count=1 2>/dev/null | cat -v | grep -Fq GRUB; then
1573     einfo "Installing Grub as bootloader."
1574
1575     if ! chroot "${MNTPOINT}" dpkg --list grub-pc 2>/dev/null | grep -q '^ii' ; then
1576       echo "Notice: grub-pc package not present yet, installing it therefore."
1577       # shellcheck disable=SC2086
1578       DEBIAN_FRONTEND=$DEBIAN_FRONTEND chroot "$MNTPOINT" apt-get -y --no-install-recommends install $DPKG_OPTIONS grub-pc
1579     fi
1580
1581     mkdir -p "${MNTPOINT}/boot/grub"
1582     if ! [ -d "${MNTPOINT}"/usr/lib/grub/i386-pc/ ] ; then
1583       eerror "Error: grub not installed inside Virtual Machine. Can not install bootloader."
1584       bailout 1
1585     fi
1586     cp -a "${MNTPOINT}"/usr/lib/grub/i386-pc "${MNTPOINT}/boot/grub/"
1587
1588     if [ -n "$VMEFI" ]; then
1589
1590       mkdir -p "${MNTPOINT}"/boot/efi
1591       mount -t vfat "${EFI_TARGET}" "${MNTPOINT}"/boot/efi
1592
1593       if ! chroot "${MNTPOINT}" dpkg --list shim-signed 2>/dev/null | grep -q '^ii' ; then
1594         echo "Notice: shim-signed package not present yet, installing it therefore."
1595         # shellcheck disable=SC2086
1596         DEBIAN_FRONTEND=$DEBIAN_FRONTEND chroot "$MNTPOINT" apt-get -y --no-install-recommends install $DPKG_OPTIONS shim-signed
1597       fi
1598
1599       if [ "$(dpkg --print-architecture)" = "arm64" ]; then
1600         if ! chroot "${MNTPOINT}" dpkg --list grub-efi-arm64-signed 2>/dev/null | grep -q '^ii' ; then
1601           echo "Notice: grub-efi-arm64-signed package not present yet, installing it therefore."
1602           # shellcheck disable=SC2086
1603           DEBIAN_FRONTEND=$DEBIAN_FRONTEND chroot "$MNTPOINT" apt-get -y --no-install-recommends install $DPKG_OPTIONS grub-efi-arm64-bin grub-efi-arm64-signed
1604         fi
1605         chroot "$MNTPOINT" grub-install --target=arm64-efi --efi-directory=/boot/efi --uefi-secure-boot --removable "/dev/$LOOP_DISK"
1606       elif [ "$(dpkg --print-architecture)" = "i386" ]; then
1607         if ! chroot "${MNTPOINT}" dpkg --list grub-efi-ia32-signed 2>/dev/null | grep -q '^ii' ; then
1608           echo "Notice: grub-efi-ia32-signed package not present yet, installing it therefore."
1609           # shellcheck disable=SC2086
1610           DEBIAN_FRONTEND=$DEBIAN_FRONTEND chroot "$MNTPOINT" apt-get -y --no-install-recommends install $DPKG_OPTIONS grub-efi-ia32-bin grub-efi-ia32-signed
1611         fi
1612         chroot "$MNTPOINT" grub-install --target=i386-efi --efi-directory=/boot/efi --uefi-secure-boot --removable "/dev/$LOOP_DISK"
1613         chroot "$MNTPOINT" grub-install --target=i386-pc "/dev/$LOOP_DISK"
1614       else
1615         if ! chroot "${MNTPOINT}" dpkg --list grub-efi-amd64-signed 2>/dev/null | grep -q '^ii' ; then
1616           echo "Notice: grub-efi-amd64-signed package not present yet, installing it therefore."
1617           # shellcheck disable=SC2086
1618           DEBIAN_FRONTEND=$DEBIAN_FRONTEND chroot "$MNTPOINT" apt-get -y --no-install-recommends install $DPKG_OPTIONS grub-efi-amd64-bin grub-efi-amd64-signed
1619         fi
1620         chroot "$MNTPOINT" grub-install --target=x86_64-efi --efi-directory=/boot/efi --uefi-secure-boot --removable "/dev/$LOOP_DISK"
1621         chroot "$MNTPOINT" grub-install --target=i386-pc "/dev/$LOOP_DISK"
1622       fi
1623     else
1624       dd if="${MNTPOINT}/usr/lib/grub/i386-pc/boot.img" of="${ORIG_TARGET}" conv=notrunc bs=440 count=1
1625       case "${_opt_filesystem}" in
1626         f2fs)
1627           chroot "${MNTPOINT}" grub-mkimage -O i386-pc -p "(hd0,msdos1)/boot/grub" -o /tmp/core.img biosdisk part_msdos f2fs
1628           ;;
1629         xfs)
1630           chroot "${MNTPOINT}" grub-mkimage -O i386-pc -p "(hd0,msdos1)/boot/grub" -o /tmp/core.img biosdisk part_msdos xfs
1631           ;;
1632         # NOTE - we might need to distinguish between further filesystems
1633         *)
1634           chroot "${MNTPOINT}" grub-mkimage -O i386-pc -p "(hd0,msdos1)/boot/grub" -o /tmp/core.img biosdisk part_msdos ext2
1635           ;;
1636       esac
1637
1638       dd if="${MNTPOINT}/tmp/core.img" of="${ORIG_TARGET}" conv=notrunc seek=1
1639       rm -f "${MNTPOINT}/tmp/core.img"
1640     fi
1641   fi
1642
1643   # workaround for Debian bug #918590 with lvm + udev:
1644   # WARNING: Device /dev/... not initialized in udev database even after waiting 10000000 microseconds
1645   if [ -d /run/udev ] ; then
1646     einfo "Setting up bind-mount /run/udev"
1647     mkdir -p "${MNTPOINT}"/run/udev
1648     mount --bind /run/udev "${MNTPOINT}"/run/udev
1649   fi
1650
1651   if [ -n "${BOOT_APPEND}" ] ; then
1652     echo "Adding BOOT_APPEND configuration ['${BOOT_APPEND}'] to /etc/default/grub."
1653     sed -i "/GRUB_CMDLINE_LINUX_DEFAULT/ s#\"\$# ${BOOT_APPEND}\"#" "${MNTPOINT}/etc/default/grub"
1654   fi
1655
1656   einfo "Updating grub configuration file."
1657   chroot "${MNTPOINT}" update-grub
1658   chroot "${MNTPOINT}" sync
1659
1660   case "$RELEASE" in
1661     jessie)
1662       einfo "Applying workaround for GRUB font path bug in jessie (Debian #787685)."
1663       mkdir -p "${MNTPOINT}/boot/grub/fonts/"
1664       cp "${MNTPOINT}/usr/share/grub/unicode.pf2" "${MNTPOINT}/boot/grub/fonts/"
1665       ;;
1666   esac
1667
1668   if grep -q '^GRUB_DISABLE_LINUX_UUID=.*true' "${MNTPOINT}"/etc/default/grub 2>/dev/null ; then
1669     ewarn "GRUB_DISABLE_LINUX_UUID is set to true in /etc/default/grub, not adjusting root= in grub.cfg."
1670     ewarn "Please note that your system might NOT be able to properly boot."
1671   elif [ -z "$ARM_EFI_TARGET" ]; then
1672     einfo "Adjusting grub.cfg for successful boot sequence."
1673     sed -i "s;root=[^ ]\\+;root=UUID=$TARGET_UUID;" "${MNTPOINT}"/boot/grub/grub.cfg
1674   fi
1675
1676   # workaround for Debian bug #918590 with lvm + udev:
1677   # WARNING: Device /dev/... not initialized in udev database even after waiting 10000000 microseconds
1678   try_umount 3 "${MNTPOINT}"/run/udev
1679
1680   try_umount 3 "${MNTPOINT}"/proc
1681   try_umount 3 "${MNTPOINT}"/sys
1682   try_umount 3 "${MNTPOINT}"/dev/pts
1683   try_umount 3 "${MNTPOINT}"/dev
1684
1685   try_umount 3 "${MNTPOINT}"/boot/efi
1686
1687 }
1688 # }}}
1689
1690 # unmount VM image {{{
1691 umount_target() {
1692   if [ -z "${VIRTUAL}" ] ; then
1693      return 0
1694   fi
1695
1696   try_umount 3 "${MNTPOINT}"/boot/efi
1697
1698   try_umount 3 "${MNTPOINT}"
1699   kpartx -d "${ORIG_TARGET}" >/dev/null
1700   # Workaround for a bug in kpartx which doesn't clean up properly,
1701   # see Debian Bug #891077 and Github-PR grml/grml-debootstrap#112
1702   if dmsetup ls | grep -q "^${LOOP_PART} "; then
1703     kpartx -d "/dev/${LOOP_DISK}" >/dev/null
1704   fi
1705 }
1706 # }}}
1707
1708 # install main chroot {{{
1709 debootstrap_system() {
1710   if [ "$_opt_nodebootstrap" ]; then
1711      einfo "Skipping debootstrap as requested."
1712      return
1713   fi
1714
1715   if grep -q "$MNTPOINT" /proc/mounts || [ -n "$DIRECTORY" ] ; then
1716     :
1717   else
1718     eerror "Error: $MNTPOINT not mounted, can not continue."
1719     eend 1 ; exit 1
1720   fi
1721
1722   if [ -n "$ISO" ] ; then
1723     einfo "Running $DEBOOTSTRAP $DEBOOTSTRAP_OPT for release ${RELEASE}${ARCHINFO} using ${ISO}"
1724     einfo "Executing: $DEBOOTSTRAP $ARCHCMD $DEBOOTSTRAP_OPT $RELEASE $MNTPOINT $ISO"
1725     # shellcheck disable=SC2086
1726     "$DEBOOTSTRAP" $ARCHCMD $DEBOOTSTRAP_OPT "$RELEASE" "$MNTPOINT" "$ISO"
1727   else
1728     einfo "Running $DEBOOTSTRAP $DEBOOTSTRAP_OPT for release ${RELEASE}${ARCHINFO} using ${MIRROR}"
1729     einfo "Executing: $DEBOOTSTRAP $ARCHCMD $DEBOOTSTRAP_OPT $RELEASE $MNTPOINT $MIRROR"
1730     # shellcheck disable=SC2086
1731     "$DEBOOTSTRAP" $ARCHCMD $DEBOOTSTRAP_OPT "$RELEASE" "$MNTPOINT" "$MIRROR"
1732   fi
1733 }
1734 # }}}
1735
1736 # prepare chroot via chroot-script {{{
1737 preparechroot() {
1738   einfo "Preparing chroot system"
1739
1740   # provide variables to chroot system
1741   CHROOT_VARIABLES="/var/cache/grml-debootstrap/variables_${SHORT_TARGET}"
1742   touch "$CHROOT_VARIABLES"
1743   chmod 600 "$CHROOT_VARIABLES" # make sure nobody except root can read it
1744   echo "# Configuration of ${PN}"                                                                                   > "$CHROOT_VARIABLES"
1745   [ -n "$ARCH" ]                      && echo "ARCH='${ARCH//\'/\'\\\'\'}'"                                         >> "$CHROOT_VARIABLES"
1746   [ -n "$BACKPORTREPOS" ]             && echo "BACKPORTREPOS='${BACKPORTREPOS//\'/\'\\\'\'}'"                       >> "$CHROOT_VARIABLES"
1747   [ -n "$BOOT_APPEND" ]               && echo "BOOT_APPEND='${BOOT_APPEND//\'/\'\\\'\'}'"                           >> "$CHROOT_VARIABLES"
1748   [ -n "$CHROOT_SCRIPTS" ]            && echo "CHROOT_SCRIPTS='${CHROOT_SCRIPTS//\'/\'\\\'\'}'"                     >> "$CHROOT_VARIABLES"
1749   [ -n "$COMPONENTS" ]                && echo "COMPONENTS='${COMPONENTS//\'/\'\\\'\'}'"                             >> "$CHROOT_VARIABLES"
1750   [ -n "$CONFFILES" ]                 && echo "CONFFILES='${CONFFILES//\'/\'\\\'\'}'"                               >> "$CHROOT_VARIABLES"
1751   [ -n "$DEBCONF" ]                   && echo "DEBCONF='${DEBCONF//\'/\'\\\'\'}'"                                   >> "$CHROOT_VARIABLES"
1752   [ -n "$DEBIAN_FRONTEND" ]           && echo "DEBIAN_FRONTEND='${DEBIAN_FRONTEND//\'/\'\\\'\'}'"                   >> "$CHROOT_VARIABLES"
1753   [ -n "$DEBOOTSTRAP" ]               && echo "DEBOOTSTRAP='${DEBOOTSTRAP//\'/\'\\\'\'}'"                           >> "$CHROOT_VARIABLES"
1754   [ -n "$DEFAULT_LOCALES" ]           && echo "DEFAULT_LOCALES='${DEFAULT_LOCALES//\'/\'\\\'\'}'"                   >> "$CHROOT_VARIABLES"
1755   [ -n "$DEFAULT_LANGUAGE" ]          && echo "DEFAULT_LANGUAGE='${DEFAULT_LANGUAGE//\'/\'\\\'\'}'"                 >> "$CHROOT_VARIABLES"
1756   [ -n "$EXTRAPACKAGES" ]             && echo "EXTRAPACKAGES='${EXTRAPACKAGES//\'/\'\\\'\'}'"                       >> "$CHROOT_VARIABLES"
1757   [ -n "$EFI" ]                       && echo "EFI='${EFI//\'/\'\\\'\'}'"                                           >> "$CHROOT_VARIABLES"
1758   [ -n "$FALLBACK_MIRROR" ]           && echo "FALLBACK_MIRROR='${FALLBACK_MIRROR//\'/\'\\\'\'}'"                   >> "$CHROOT_VARIABLES"
1759   [ -n "$FILESYSTEM" ]                && echo "FILESYSTEM='${FILESYSTEM//\'/\'\\\'\'}'"                             >> "$CHROOT_VARIABLES"
1760   [ -n "$FORCE" ]                     && echo "FORCE='${FORCE//\'/\'\\\'\'}'"                                       >> "$CHROOT_VARIABLES"
1761   [ -n "$GRMLREPOS" ]                 && echo "GRMLREPOS='${GRMLREPOS//\'/\'\\\'\'}'"                               >> "$CHROOT_VARIABLES"
1762   [ -n "$GRUB" ]                      && echo "GRUB='${GRUB//\'/\'\\\'\'}'"                                         >> "$CHROOT_VARIABLES"
1763   [ -n "$HOSTNAME" ]                  && echo "HOSTNAME='${HOSTNAME//\'/\'\\\'\'}'"                                 >> "$CHROOT_VARIABLES"
1764   [ -n "$INITRD" ]                    && echo "INITRD='${INITRD//\'/\'\\\'\'}'"                                     >> "$CHROOT_VARIABLES"
1765   [ -n "$INITRD_GENERATOR" ]          && echo "INITRD_GENERATOR='${INITRD_GENERATOR//\'/\'\\\'\'}'"                 >> "$CHROOT_VARIABLES"
1766   [ -n "$INITRD_GENERATOR_OPTS" ]     && echo "INITRD_GENERATOR_OPTS='${INITRD_GENERATOR_OPTS//\'/\'\\\'\'}'"       >> "$CHROOT_VARIABLES"
1767   [ -n "$INSTALL_NOTES" ]             && echo "INSTALL_NOTES='${INSTALL_NOTES//\'/\'\\\'\'}'"                       >> "$CHROOT_VARIABLES"
1768   [ -n "$ISODIR" ]                    && echo "ISODIR='${ISO//\'/\'\\\'\'}'"                                        >> "$CHROOT_VARIABLES"
1769   [ -n "$ISO" ]                       && echo "ISO='${ISO//\'/\'\\\'\'}'"                                           >> "$CHROOT_VARIABLES"
1770   [ -n "$KEEP_SRC_LIST" ]             && echo "KEEP_SRC_LIST='${KEEP_SRC_LIST//\'/\'\\\'\'}'"                       >> "$CHROOT_VARIABLES"
1771   [ -n "$LOCALES" ]                   && echo "LOCALES='${LOCALES//\'/\'\\\'\'}'"                                   >> "$CHROOT_VARIABLES"
1772   [ -n "$MIRROR" ]                    && echo "MIRROR='${MIRROR//\'/\'\\\'\'}'"                                     >> "$CHROOT_VARIABLES"
1773   [ -n "$MKFS" ]                      && echo "MKFS='${MKFS//\'/\'\\\'\'}'"                                         >> "$CHROOT_VARIABLES"
1774   [ -n "$NOPASSWORD" ]                && echo "NOPASSWORD=\"true\""                                                 >> "$CHROOT_VARIABLES"
1775   [ -n "$NOKERNEL" ]                  && echo "NOKERNEL=\"true\""                                                   >> "$CHROOT_VARIABLES"
1776   [ -n "$PACKAGES" ]                  && echo "PACKAGES='${PACKAGES//\'/\'\\\'\'}'"                                 >> "$CHROOT_VARIABLES"
1777   [ -n "$POST_SCRIPTS" ]              && echo "POST_SCRIPTS='${POST_SCRIPTS//\'/\'\\\'\'}'"                         >> "$CHROOT_VARIABLES"
1778   [ -n "$PRE_SCRIPTS" ]               && echo "PRE_SCRIPTS='${PRE_SCRIPTS//\'/\'\\\'\'}'"                           >> "$CHROOT_VARIABLES"
1779   [ -n "$RECONFIGURE" ]               && echo "RECONFIGURE='${RECONFIGURE//\'/\'\\\'\'}'"                           >> "$CHROOT_VARIABLES"
1780   [ -n "$RELEASE" ]                   && echo "RELEASE='${RELEASE//\'/\'\\\'\'}'"                                   >> "$CHROOT_VARIABLES"
1781   [ -n "$RM_APTCACHE" ]               && echo "RM_APTCACHE='${RM_APTCACHE//\'/\'\\\'\'}'"                           >> "$CHROOT_VARIABLES"
1782   [ -n "$ROOTPASSWORD" ]              && echo "ROOTPASSWORD='${ROOTPASSWORD//\'/\'\\\'\'}'"                         >> "$CHROOT_VARIABLES"
1783   [ -n "$SCRIPTS" ]                   && echo "SCRIPTS='${SCRIPTS//\'/\'\\\'\'}'"                                   >> "$CHROOT_VARIABLES"
1784   [ -n "$SECURE" ]                    && echo "SECURE='${SECURE//\'/\'\\\'\'}'"                                     >> "$CHROOT_VARIABLES"
1785   [ -n "$SELECTED_PARTITIONS" ]       && echo "SELECTED_PARTITIONS='${SELECTED_PARTITIONS//\'/\'\\\'\'}'"           >> "$CHROOT_VARIABLES"
1786   [ -n "$TARGET" ]                    && echo "TARGET='${TARGET//\'/\'\\\'\'}'"                                     >> "$CHROOT_VARIABLES"
1787   [ -n "$UPGRADE_SYSTEM" ]            && echo "UPGRADE_SYSTEM='${UPGRADE_SYSTEM//\'/\'\\\'\'}'"                     >> "$CHROOT_VARIABLES"
1788   [ -n "$TARGET_UUID" ]               && echo "TARGET_UUID='${TARGET_UUID//\'/\'\\\'\'}'"                           >> "$CHROOT_VARIABLES"
1789   [ -n "$TIMEZONE" ]                  && echo "TIMEZONE='${TIMEZONE//\'/\'\\\'\'}'"                                 >> "$CHROOT_VARIABLES"
1790   [ -n "$TUNE2FS" ]                   && echo "TUNE2FS='${TUNE2FS//\'/\'\\\'\'}'"                                   >> "$CHROOT_VARIABLES"
1791   [ -n "$VMSIZE" ]                    && echo "VMSIZE='${VMSIZE//\'/\'\\\'\'}'"                                     >> "$CHROOT_VARIABLES"
1792
1793   cp $VERBOSE "${CONFFILES}"/chroot-script "${MNTPOINT}"/bin/chroot-script
1794   chmod 755 "${MNTPOINT}"/bin/chroot-script
1795   [ -d "$MNTPOINT"/etc/debootstrap/ ] || mkdir "$MNTPOINT"/etc/debootstrap/
1796
1797   # make sure we have our files for later use via chroot-script
1798   cp $VERBOSE "${CONFFILES}/config"           "${MNTPOINT}"/etc/debootstrap/
1799   # make sure we adjust the configuration variables accordingly:
1800   sed -i "s#RELEASE=.*#RELEASE=\"$RELEASE\"#" "${MNTPOINT}"/etc/debootstrap/config
1801   sed -i "s#TARGET=.*#TARGET=\"$TARGET\"#"    "${MNTPOINT}"/etc/debootstrap/config
1802   sed -i "s#GRUB=.*#GRUB=\"$GRUB\"#"          "${MNTPOINT}"/etc/debootstrap/config
1803
1804   # install notes:
1805   if [ -n "$INSTALL_NOTES" ] ; then
1806      [ -r "$INSTALL_NOTES" ] && cp "$INSTALL_NOTES" "${MNTPOINT}"/etc/debootstrap/
1807   fi
1808
1809   # package selection:
1810   if [ "$PACKAGES" = 'yes' ] ; then
1811     PACKAGES_FILE="packages"
1812
1813     if [ "$ARCH" = 'arm64' ]; then
1814       PACKAGES_FILE="packages-arm64"
1815     fi
1816
1817     cp $VERBOSE "${_opt_packages:-$CONFFILES/$PACKAGES_FILE}" \
1818       "${MNTPOINT}/etc/debootstrap/${PACKAGES_FILE}"
1819   fi
1820
1821   # debconf preseeding:
1822   _opt_debconf=${_opt_debconf:-$CONFFILES/debconf-selections}
1823   [ -f "${_opt_debconf}" ] && [ "$DEBCONF" = 'yes' ] && \
1824     cp $VERBOSE "${_opt_debconf}" "${MNTPOINT}"/etc/debootstrap/debconf-selections
1825
1826   # copy scripts that should be executed inside the chroot:
1827   _opt_chroot_scripts=${_opt_chroot_scripts:-$CONFFILES/chroot-scripts/}
1828   [ -d "$_opt_chroot_scripts" ] && [ "$CHROOT_SCRIPTS" = 'yes' ] && {
1829     mkdir -p "${MNTPOINT}"/etc/debootstrap/chroot-scripts
1830     cp -a $VERBOSE "${_opt_chroot_scripts}"/* "${MNTPOINT}"/etc/debootstrap/chroot-scripts/
1831   }
1832
1833   # notice: do NOT use $CHROOT_VARIABLES inside chroot but statically file instead!
1834   cp $VERBOSE "${CHROOT_VARIABLES}" "${MNTPOINT}"/etc/debootstrap/variables
1835
1836   cp $VERBOSE -a -L "${CONFFILES}"/extrapackages/ "${MNTPOINT}"/etc/debootstrap/
1837
1838   # make sure we can access network [relevant for cdebootstrap/mmdebstrap]
1839   [ -f "${MNTPOINT}"/etc/resolv.conf ] || cp $VERBOSE /etc/resolv.conf "${MNTPOINT}"/etc/resolv.conf
1840
1841   # setup default locales
1842   [ -n "$LOCALES" ] && cp $VERBOSE "${CONFFILES}"/locale.gen "${MNTPOINT}"/etc/locale.gen
1843
1844   # copy any existing files to chroot
1845   [ -d "${CONFFILES}"/bin   ] && cp $VERBOSE -a -L "${CONFFILES}"/bin/*   "${MNTPOINT}"/bin/
1846   [ -d "${CONFFILES}"/boot  ] && cp $VERBOSE -a -L "${CONFFILES}"/boot/*  "${MNTPOINT}"/boot/
1847   [ -d "${CONFFILES}"/etc   ] && cp $VERBOSE -a -L "${CONFFILES}"/etc/*   "${MNTPOINT}"/etc/
1848   [ -d "${CONFFILES}"/sbin  ] && cp $VERBOSE -a -L "${CONFFILES}"/sbin/*  "${MNTPOINT}"/sbin/
1849   [ -d "${CONFFILES}"/share ] && cp $VERBOSE -a -L "${CONFFILES}"/share/* "${MNTPOINT}"/share/
1850   [ -d "${CONFFILES}"/usr   ] && cp $VERBOSE -a -L "${CONFFILES}"/usr/*   "${MNTPOINT}"/usr/
1851   [ -d "${CONFFILES}"/var   ] && cp $VERBOSE -a -L "${CONFFILES}"/var/*   "${MNTPOINT}"/var/
1852
1853   # network setup
1854   DEFAULT_INTERFACES="# /etc/network/interfaces - generated by grml-debootstrap
1855
1856 # Include files from /etc/network/interfaces.d when using
1857 # ifupdown v0.7.44 or newer:
1858 #source-directory /etc/network/interfaces.d
1859
1860 auto lo
1861 iface lo inet loopback
1862
1863 allow-hotplug eth0
1864 iface eth0 inet dhcp
1865 "
1866
1867   # add dhcp setting for Predictable Network Interface Names
1868   if [ -x /bin/udevadm ]; then
1869     tmpfile=$(mktemp)
1870     for interface in /sys/class/net/*; do
1871       udevadm info --query=all --path="${interface}" > "${tmpfile}"
1872       # skip virtual devices, like bridges, vboxnet,...
1873       if grep -q 'P: /devices/virtual/net/' "${tmpfile}" ; then
1874         continue
1875       fi
1876
1877       # iterate over possible naming policies by precedence (see udev/net/link-config.c),
1878       # use and stop on first match to have same behavior as udev's link_config_apply()
1879       for property in ID_NET_NAME_FROM_DATABASE ID_NET_NAME_ONBOARD ID_NET_NAME_SLOT ID_NET_NAME_PATH ID_NET_NAME_MAC ; do
1880         if grep -q "${property}" "${tmpfile}" ; then
1881           interface=$(grep "${property}" "${tmpfile}" | sed -n -e "s/E: ${property}=\([^\$*]\)/\1/p")
1882           DEFAULT_INTERFACES="${DEFAULT_INTERFACES}
1883 allow-hotplug ${interface}
1884 iface ${interface} inet dhcp
1885 "
1886           break
1887         fi
1888       done
1889     done
1890     rm -f "${tmpfile}"
1891   fi
1892
1893   if [ -n "$NOINTERFACES" ] ; then
1894     einfo "Not installing /etc/network/interfaces as requested via --nointerfaces option"
1895   elif [ -n "$USE_DEFAULT_INTERFACES" ] ; then
1896     einfo "Installing default /etc/network/interfaces as requested via --defaultinterfaces options."
1897     mkdir -p "${MNTPOINT}/etc/network"
1898     echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces"
1899   elif [ -n "$VIRTUAL" ] ; then
1900     einfo "Setting up Virtual Machine, installing default /etc/network/interfaces"
1901     mkdir -p "${MNTPOINT}/etc/network"
1902     echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces"
1903   elif [ -r /etc/network/interfaces ] ; then
1904     einfo "Copying /etc/network/interfaces from host to target system"
1905     mkdir -p "${MNTPOINT}/etc/network"
1906     cp $VERBOSE /etc/network/interfaces "${MNTPOINT}/etc/network/interfaces"
1907   else
1908     ewarn "Couldn't read /etc/network/interfaces, installing default /etc/network/interfaces"
1909     mkdir -p "${MNTPOINT}/etc/network"
1910     echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces"
1911   fi
1912
1913   # install config file providing some example entries
1914   if [ -r /etc/network/interfaces.examples ] && [ ! -r "$MNTPOINT/etc/network/interfaces.examples" ] ; then
1915     mkdir -p "${MNTPOINT}/etc/network"
1916     cp /etc/network/interfaces.examples "$MNTPOINT/etc/network/interfaces.examples"
1917   fi
1918
1919   if [ -n "${SSHCOPYID}" ] ; then
1920     AUTHORIZED_KEYS_SOURCE=${AUTHORIZED_KEYS_SOURCE:-$HOME/.ssh/authorized_keys}
1921     AUTHORIZED_KEYS_TARGET=${AUTHORIZED_KEYS_TARGET:-$MNTPOINT/root/.ssh/}
1922     if ssh-add -L >/dev/null 2>&1 ; then
1923       einfo "Use locally available public keys to authorise root login on the target system as requested via --sshcopyid option."
1924       mkdir -p "${MNTPOINT}"/root/.ssh
1925       chmod 0700 "${MNTPOINT}"/root/.ssh
1926       if ! ssh-add -L >> "${MNTPOINT}"/root/.ssh/authorized_keys ; then
1927         eerror "Error: executing 'ssh-add -L' failed."
1928         bailout 1
1929       fi
1930     elif [ -f "$AUTHORIZED_KEYS_SOURCE" ]; then
1931       einfo "copying '$AUTHORIZED_KEYS_SOURCE' to '$AUTHORIZED_KEYS_TARGET' as requested via --sshcopyid option."
1932       mkdir -p "$AUTHORIZED_KEYS_TARGET"
1933       chmod 0700 "$AUTHORIZED_KEYS_TARGET"
1934       if ! cp "$AUTHORIZED_KEYS_SOURCE" "$AUTHORIZED_KEYS_TARGET" ; then
1935         eerror "Error: copying '$AUTHORIZED_KEYS_SOURCE' to '$AUTHORIZED_KEYS_TARGET' failed"
1936         bailout 1
1937       fi
1938     else
1939       eerror "Error: Could not open a connection to your authentication agent or the agent has no identities."
1940       bailout 1
1941     fi
1942   fi
1943
1944   if [ -n "${SSHCOPYAUTH}" ] ; then
1945     AUTHORIZED_KEYS_SOURCE=${AUTHORIZED_KEYS_SOURCE:-${HOME}/.ssh/authorized_keys}
1946
1947     if ! [ -f "${AUTHORIZED_KEYS_SOURCE}" ]; then
1948       eerror "Error: could not read '${AUTHORIZED_KEYS_SOURCE}' for setting up SSH key login."
1949       bailout 1
1950     fi
1951
1952     AUTHORIZED_KEYS_TARGET="${MNTPOINT}/root/.ssh/"
1953     einfo "Copying '${AUTHORIZED_KEYS_SOURCE}' to '${AUTHORIZED_KEYS_TARGET}' as requested via --sshcopyauth option."
1954     mkdir -p "${AUTHORIZED_KEYS_TARGET}"
1955     chmod 0700 "${AUTHORIZED_KEYS_TARGET}"
1956     if ! cp "${AUTHORIZED_KEYS_SOURCE}" "${AUTHORIZED_KEYS_TARGET}" ; then
1957       eerror "Error: copying '${AUTHORIZED_KEYS_SOURCE}' to '${AUTHORIZED_KEYS_TARGET}' failed."
1958       bailout 1
1959     fi
1960   fi
1961
1962   if [ -d /run/udev ] ; then
1963     einfo "Setting up bind-mount /run/udev"
1964     mkdir -p "${MNTPOINT}"/run/udev
1965     mount --bind /run/udev "${MNTPOINT}"/run/udev
1966   fi
1967 }
1968 # }}}
1969
1970 # execute all scripts in /etc/debootstrap/pre-scripts/ {{{
1971 execute_pre_scripts() {
1972   # make sure hostname is set even before chroot-script get executed
1973   echo "$HOSTNAME" > "$MNTPOINT"/etc/hostname
1974
1975   # make sure we have $MNTPOINT available for our scripts
1976   export MNTPOINT
1977
1978   if [ -d "$_opt_pre_scripts" ] || [ "$PRE_SCRIPTS" = 'yes' ] ; then
1979     [ -d "$_opt_pre_scripts" ] && pre_scripts="$_opt_pre_scripts" || pre_scripts="${CONFFILES}/pre-scripts/"
1980     for script in "${pre_scripts}"/* ; do
1981       if [ -x "$script" ] ; then
1982         einfo "Executing pre-script $script"
1983         "$script"
1984       fi
1985     done
1986   fi
1987 }
1988 # }}}
1989
1990 # execute all scripts in /etc/debootstrap/post-scripts/ {{{
1991 execute_post_scripts() {
1992   # make sure we have $MNTPOINT and HOSTNAME available for our scripts
1993   export MNTPOINT
1994   export TARGET_HOSTNAME=$HOSTNAME
1995
1996   if [ -d "$_opt_scripts" ] || [ "$SCRIPTS" = 'yes' ] ; then
1997     # legacy support for /etc/debootstrap/scripts/
1998     [ -d "$_opt_scripts" ] && post_scripts="$_opt_scripts" || post_scripts="${CONFFILES}/scripts/"
1999     ewarn "Deprecation NOTE: --scripts/SCRIPTS are deprecated, please switch to --post-scripts/POST_SCRIPTS instead."
2000   elif [ -d "$_opt_post_scripts" ] || [ "$POST_SCRIPTS" = 'yes' ] ; then
2001     [ -d "$_opt_post_scripts" ] && post_scripts="$_opt_post_scripts" || post_scripts="${CONFFILES}/post-scripts/"
2002   fi
2003
2004   if [ -n "$post_scripts" ] ; then
2005     for script in "${post_scripts}"/* ; do
2006       if [ -x "$script" ] ; then
2007         einfo "Executing post-script $script"
2008         "$script"
2009       fi
2010     done
2011   fi
2012 }
2013 # }}}
2014
2015 # unmount mountpoint {{{
2016 try_umount() {
2017   local tries=$1
2018   local mountpoint="$2"
2019
2020   if ! mountpoint "$mountpoint" &>/dev/null ; then
2021     return 0
2022   fi
2023
2024   for (( try=1; try<=tries; try++ )); do
2025     if [[ ${try} -eq ${tries} ]]; then
2026       # Last time, show errors this time
2027       umount "${mountpoint}" && return 0
2028     else
2029       # Not last time, hide errors until fatal
2030       if umount "${mountpoint}" 2>/dev/null ; then
2031         return 0
2032       else
2033         sleep 1
2034       fi
2035     fi
2036   done
2037   return 1  # Tried enough
2038 }
2039 # }}}
2040
2041 # execute chroot-script {{{
2042 chrootscript() {
2043   if ! [ -r "$MNTPOINT/bin/chroot-script" ] ; then
2044     mount_target
2045   fi
2046
2047   if ! [ -x "$MNTPOINT/bin/chroot-script" ] ; then
2048     eerror "Fatal: $MNTPOINT/bin/chroot-script could not be found."
2049     eend 1
2050   else
2051     einfo "Executing chroot-script now"
2052     mount -t devtmpfs udev "${MNTPOINT}"/dev
2053     mount -t devpts devpts "${MNTPOINT}"/dev/pts
2054     if [ "$DEBUG" = "true" ] ; then
2055       chroot "$MNTPOINT" /bin/bash -x /bin/chroot-script
2056     else
2057       chroot "$MNTPOINT" /bin/chroot-script
2058     fi
2059     try_umount 3 "$MNTPOINT"/dev/pts
2060     try_umount 3 "$MNTPOINT"/dev
2061   fi
2062
2063   # finally get rid of chroot-script again, there's no good reason to
2064   # keep it on the installed system
2065   if grep -q GRML_CHROOT_SCRIPT_MARKER "${MNTPOINT}/bin/chroot-script" ; then
2066     einfo "Removing chroot-script again"
2067     rm -f "${MNTPOINT}/bin/chroot-script"
2068   else
2069     einfo "Keeping chroot-script as string GRML_CHROOT_SCRIPT_MARKER could not be found"
2070   fi
2071 }
2072 # }}}
2073
2074 # unmount $MNTPOINT {{{
2075 umount_chroot() {
2076
2077   # display installation notes:
2078   if [ -n "$INSTALL_NOTES" ] ; then
2079      [ -r "${MNTPOINT}/${INSTALL_NOTES}" ] && cat "${MNTPOINT}/${INSTALL_NOTES}"
2080   fi
2081
2082   if [ -n "$ISODIR" ] ; then
2083      einfo "Unmount $MNTPOINT/$ISODIR"
2084      try_umount 3 "$MNTPOINT/$ISODIR"
2085   fi
2086
2087   try_umount 3 "${MNTPOINT}"/run/udev
2088
2089   if [ -n "$PARTITION" ] ; then
2090      try_umount 3 "$MNTPOINT"
2091   fi
2092 }
2093 # }}}
2094
2095 # execute filesystem check {{{
2096 fscktool() {
2097  if [ -n "$VIRTUAL" ] ; then
2098    einfo "Skipping filesystem check because we deploy a virtual machine."
2099    return 0
2100  fi
2101
2102  if [ "$FSCK" = 'yes' ] ; then
2103    [ -n "$FSCKTOOL" ] || FSCKTOOL="fsck.${MKFS#mkfs.}"
2104    einfo "Checking filesystem on $TARGET using $FSCKTOOL"
2105    "$FSCKTOOL" "$TARGET"
2106  fi
2107 }
2108 # }}}
2109
2110 # get rid of grml-debootstrap config files {{{
2111 remove_configs() {
2112   if [ "$REMOVE_CONFIGS" != "yes" ] ; then
2113     return 0
2114   fi
2115
2116   if ! mountpoint "${MNTPOINT}" >/dev/null 2>&1 ; then
2117     ewarn "Target ${MNTPOINT} doesn't seem to be mounted, can't remove configuration files."
2118     return 0
2119   fi
2120
2121   einfo "Removing configuration files from installed system as requested via --remove-configs / REMOVE_CONFIGS."
2122   rm -rf "${MNTPOINT}"/etc/debootstrap/
2123 }
2124 # }}}
2125
2126 # now execute all the functions {{{
2127 for i in format_efi_partition prepare_vm mkfs tunefs \
2128          mount_target mountpoint_to_blockdevice debootstrap_system \
2129          preparechroot execute_pre_scripts chrootscript execute_post_scripts \
2130          remove_configs umount_chroot grub_install umount_target fscktool ; do
2131     if stage "${i}" ; then
2132       "$i"
2133       stage "${i}" 'done'
2134       rm -f "${STAGES}/${i}"
2135     fi
2136 done
2137
2138 cleanup
2139 # }}}
2140
2141 # end dialog of autoinstallation {{{
2142 if [ -n "$AUTOINSTALL" ] ; then
2143    if dialog --title "${PN}" --pause "Finished execution of ${PN}.
2144 Automatically rebooting in 10 seconds.
2145
2146 Choose Cancel to skip rebooting." 10 60 10 ; then
2147      noeject noprompt reboot
2148   fi
2149 else
2150    einfo "Finished execution of ${PN}. Enjoy your Debian system."
2151 fi
2152 # }}}
2153
2154 ## END OF FILE #################################################################
2155 # vim: ai tw=100 expandtab foldmethod=marker shiftwidth=2