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