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