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