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