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