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