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