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