a97f5ece929625a1623f3f8799aabf1ecc5ee25a
[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 # variables {{{
10 PN="$(basename "$0")"
11 VERSION="$(dpkg-query --show --showformat='${Version}' "$PN")"
12 VERSION="${VERSION:-unknown}"
13 MNTPOINT="/mnt/debootstrap.$$"
14
15 # defaults
16 [ -n "$CHROOT_SCRIPTS" ] || CHROOT_SCRIPTS='yes'
17 [ -n "$CONFFILES" ] || CONFFILES='/etc/debootstrap'
18 [ -n "$DEBCONF" ] || DEBCONF='yes'
19 [ -n "$DEBIAN_FRONTEND" ] || DEBIAN_FRONTEND='noninteractive'
20 [ -n "$DEBOOTSTRAP" ] || DEBOOTSTRAP='debootstrap'
21 [ -n "$DEFAULT_LANGUAGE" ] || DEFAULT_LANGUAGE='en_US:en'
22 [ -n "$DEFAULT_LOCALES" ] || DEFAULT_LOCALES='en_US.UTF-8'
23 [ -n "$DISK_IDENTIFIER" ] || DISK_IDENTIFIER='26ada0c0-1165-4098-884d-aafd2220c2c6'
24 [ -n "$EXTRAPACKAGES" ] || EXTRAPACKAGES='yes'
25 [ -n "$FALLBACK_MIRROR" ] || FALLBACK_MIRROR='http://http.debian.net/debian'
26 [ -n "$FIXED_DISK_IDENTIFIERS" ] || FIXED_DISK_IDENTIFIERS="no"
27 [ -n "$FORCE" ] || FORCE=''
28 [ -n "$HOSTNAME" ] || HOSTNAME='grml'
29 [ -n "$INITRD" ] || INITRD='yes'
30 [ -n "$INSTALL_NOTES" ] || INSTALL_NOTES='/etc/debootstrap/install_notes'
31 [ -n "$LOCALES" ] || LOCALES='yes'
32 [ -n "$MIRROR" ] || MIRROR="$FALLBACK_MIRROR"
33 [ -n "$MKFS" ] || MKFS='mkfs.ext4'
34 [ -n "$MKFS_OPTS" ] || MKFS_OPTS=''
35 [ -n "$PACKAGES" ] || PACKAGES='yes'
36 [ -n "$PRE_SCRIPTS" ] || PRE_SCRIPTS='yes'
37 [ -n "$RECONFIGURE" ] || RECONFIGURE='console-data'
38 [ -n "$RELEASE" ] || RELEASE='jessie'
39 [ -n "$RM_APTCACHE" ] || RM_APTCACHE='yes'
40 [ -n "$SCRIPTS" ] || SCRIPTS='yes'
41 [ -n "$SECURE" ] || SECURE='yes'
42 [ -n "$TIMEZONE" ] || TIMEZONE='Europe/Vienna'
43 [ -n "$TUNE2FS" ] || TUNE2FS='tune2fs -c0 -i0'
44 [ -n "$UPGRADE_SYSTEM" ] || UPGRADE_SYSTEM='yes'
45 [ -n "$VMSIZE" ] || VMSIZE="2G"
46
47 # inside the chroot system locales might not be available, so use minimum:
48 export LANG=C
49 export LC_ALL=C
50
51 # make sure interactive mode is only executed when
52 # using an empty configuration file or option --interactive
53 INTERACTIVE=''
54 # }}}
55
56 # help text {{{
57 usage() {
58   echo "$PN - wrapper around debootstrap for installing Debian
59
60 Usage: $PN [options]
61
62 Bootstrap options:
63
64   -m, --mirror <URL>     Mirror which should be used for apt-get/aptitude.
65   -i, --iso <mnt>        Mountpoint where a Debian ISO is mounted to, for use
66                          instead of fetching packages from a mirror.
67   -r, --release <name>   Release of new Debian system (default: jessie).
68   -t, --target <target>  Target partition (/dev/...) or directory where the
69                          system should be installed to.
70   -p, --mntpoint <mnt>   Mountpoint used for mounting the target system,
71                          has no effect if -t is given and represents a directory.
72       --debopt <params>  Extra parameters passed to the debootstrap command.
73       --interactive      Use interactive mode (frontend).
74       --nodebootstrap    Skip debootstrap, only do configuration to the target.
75       --grub <device>    Target for grub installation. Usage example: /dev/sda
76       --arch <arch>      Set target architecture, use for installing i386 on amd64.
77       --filesystem <fs>  Filesystem that should be used when target is a partition
78                          or Virtual Machine (see --vmfile).
79       --force            Do not prompt for user acknowledgement.
80
81 Options for Virtual Machine deployment:
82
83       --vm               Set up a Virtual Machine, instead of plainly installing
84                          to a partition or directory, to be combined with --target,
85                          like: --vm --target /dev/mapper/your-vm-disk
86       --vmfile           Like --vm, but install into a file (raw format).
87                          Example: --vmfile --target /mnt/sda1/qemu.img
88       --vmsize <size>    Use specified size for size of VM file (default: 2G).
89                          Syntax as supported by qemu-img, like: --vmsize 3G
90
91 Configuration options:
92
93   -c, --config <file>      Use specified configuration file, defaults to
94                              /etc/debootstrap/config
95   -d, --confdir <path>     Place of config files for debootstrap, defaults
96                              to /etc/debootstrap
97       --packages <file>    Install packages defined in specified list file
98                              instead of using /etc/debootstrap/packages.
99       --nopackages         Skip installation of packages defined in
100                              /etc/debootstrap/packages
101       --nokernel           Skip installation of default kernel images.
102       --nointerfaces       Do not copy /etc/network/interfaces from host system
103                            to target system.
104                            (This option is automatically enabled when using --vmfile.)
105       --defaultinterfaces  Install a default /etc/network/interfaces file (enabling
106                            DHCP for eth0) instead of taking over config from host system.
107       --debconf <file>     Pre-seed packages using specified pre-seed db file.
108       --grmlrepos          Enable Grml's Debian repository (deb.grml.org).
109       --backportrepos      Enable Debian's backports repository (backports.debian.org).
110       --keep_src_list      Do not overwrite user provided apt sources.list.
111       --hostname <name>    Hostname of Debian system.
112       --nopassword         Do not prompt for the root password.
113       --password <pwd>     Use specified password as password for user root.
114       --bootappend <line>  Add specified appendline to kernel whilst booting.
115       --chroot-scripts <d> Execute chroot scripts from specified directory.
116       --pre-scripts <dir>  Execute scripts from specified directory (before chroot-scripts).
117       --scripts <dir>      Execute scripts from specified directory (after chroot-scripts).
118
119 Other options:
120
121   -v, --verbose            Increase verbosity.
122       --debug              Execute in very verbose way.
123   -h, --help               Print this usage information and exit.
124   -V, --version            Show summary of options and exit.
125
126 Usage examples can be found in the grml-debootstrap manpage.
127 Send bugreports to the grml-team: bugs (at) grml.org || http://grml.org/bugs/
128 "
129 }
130
131 if [ "$1" = '-h' ] || [ "$1" = '-help' ] || [ "$1" = "--help" ] ; then
132    usage
133    echo 'Please notice that this script requires root permissions!'
134    exit 0
135 fi
136 # }}}
137
138 # early helper functions {{{
139 GOOD='\e[32;01m'
140 BAD='\e[31;01m'
141 NORMAL='\e[0m'
142
143 einfo() {
144   einfon "$1\n"
145   return 0
146 }
147
148 einfon() {
149   [ "${RC_ENDCOL}" != "yes" ] && [ "${LAST_E_CMD}" = "ebegin" ] && echo
150   printf " ${GOOD}*${NORMAL} $*"
151   LAST_E_CMD=einfon
152   return 0
153 }
154
155 eerror() {
156   [ "${RC_ENDCOL}" != "yes" ] && [ "${LAST_E_CMD}" = "ebegin" ] && echo
157   printf " ${BAD}*${NORMAL} $*\n" >&2
158   LAST_E_CMD=eerror
159   return 0
160 }
161
162 eend() {
163   local retval="${1:-0}"
164   shift
165   if [ "$retval" -gt 0 ]; then
166     printf " ${BAD}-> Failed (rc=${retval})${NORMAL}\n"
167   fi
168   return "$retval"
169 }
170
171 check4root(){
172   if [ "$(id -u 2>/dev/null)" != 0 ] ; then
173     echo 1>&2 "Error: please run this script with uid 0 (root)." ; return 1
174   fi
175 }
176
177 check4progs(){
178   local RC=''
179   for arg in "$@" ; do
180     which "$arg" >/dev/null 2>&1 || RC="$arg"
181   done
182   if [ -n "$RC" ] ; then
183      echo "$RC not installed"
184      return 1
185   fi
186 }
187 # }}}
188
189 # helper functions {{{
190 cleanup() {
191   if [ -n "$CHROOT_VARIABLES" ] ; then
192     einfo "Removing ${CHROOT_VARIABLES}" ; rm "$CHROOT_VARIABLES" ; eend $?
193   fi
194
195   if [ -n "$STAGES" ] ; then
196     einfo "Removing ${STAGES}" ; rmdir "$STAGES" ; eend $?
197   fi
198
199   # Remove temporary mountpoint again
200   if echo "$MNTPOINT" | grep -q '/mnt/debootstrap\.' ; then
201     rmdir "$MNTPOINT" 2>/dev/null
202   fi
203
204   # make sure $TARGET is not mounted when exiting grml-debootstrap
205   if [ -n "$MNTPOINT" ] ; then
206     if grep -q "$MNTPOINT" /proc/mounts ; then
207       # make sure nothing is left inside chroot so we can unmount it
208       [ -x "$MNTPOINT"/etc/init.d/ssh   ] && "$MNTPOINT"/etc/init.d/ssh stop
209       [ -x "$MNTPOINT"/etc/init.d/mdadm ] && "$MNTPOINT"/etc/init.d/mdadm stop
210
211       [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount -a >/dev/null 2>&1
212
213       # ugly, but make sure we really don't leave anything (/proc /proc and
214       # /dev /dev are intended, trying to work around timing issues, see #657023)
215       for ARG in /sys /proc /proc /dev /dev ; do
216         [ -x "$MNTPOINT"/bin/umount ] && chroot "$MNTPOINT" umount $ARG >/dev/null 2>&1
217         umount "$MNTPOINT"/$ARG >/dev/null 2>&1
218       done
219
220       if [ -n "$ISODIR" ] ; then
221         [ -d "$MNTPOINT/$ISODIR" ] && umount "$MNTPOINT/$ISODIR" >/dev/null 2>&1
222       fi
223
224       if [ -n "$DIRECTORY" ] ; then
225         einfo "Not unmounting $MNTPOINT as you requested me to install into a directory of your own choice." ; eend 0
226       else
227         einfo "Unmounting $MNTPOINT"
228         umount "$MNTPOINT"
229         eend $?
230       fi
231
232       if [ -n "$STAGES" ] ; then
233         echo -n "Removing stages directory ${STAGES}: "
234         rm -rf "$STAGES" && echo 'done'
235       fi
236
237       # remove directory only if we used the default with process id inside the name
238       if echo "$MNTPOINT" | grep -q '/mnt/debootstrap\.' ; then
239         einfo "Removing directory ${MNTPOINT}"
240         rmdir "$MNTPOINT"
241         eend $?
242       fi
243     fi
244   fi
245
246   if [ -n "${ORIG_TARGET}" ] ; then
247     einfo "Removing loopback mount of file ${ORIG_TARGET}."
248     kpartx -d "${ORIG_TARGET}" ; eend $?
249   fi
250 }
251
252 # we want to exit smoothly and clean:
253 bailout(){
254
255   cleanup
256
257   [ -n "$1" ] && EXIT="$1" || EXIT="1"
258   [ -n "$2" ] && einfo "Notice: remove $STAGES/$2 to reexecute the stage"
259
260   exit "$EXIT"
261 }
262 trap bailout HUP INT QUIT TERM
263
264 # we want to execute all the functions only once, simple check for it:
265 stage() {
266   if [ -n "$2" ] ; then
267      echo "$2" > "${STAGES}/${1}"
268      return 0
269   elif grep -q 'done' "${STAGES}/${1}" 2>/dev/null ; then
270      ewarn "Notice: stage $1 has been executed already, skipping execution therefore." ; eend 0
271      ewarn "  To reexecute it clean up the according directory inside $STAGES" ; eend 0
272      return 1
273   fi
274 }
275 # }}}
276
277 # make sure we have what we need {{{
278 check4progs debootstrap || bailout 1
279 # }}}
280
281 # source main configuration file {{{
282 if [ -r /etc/debootstrap/config ] ; then
283   . /etc/debootstrap/config
284 fi
285 # }}}
286
287 # cmdline handling {{{
288 # source external command line parameter-processing script
289 if [ -r ./cmdlineopts.clp ] ; then
290    . ./cmdlineopts.clp
291 elif [ -r /usr/share/grml-debootstrap/functions/cmdlineopts.clp ] ; then
292    . /usr/share/grml-debootstrap/functions/cmdlineopts.clp
293 else
294    eerror "Error: cmdline function file not found, exiting."
295    eend 1
296    bailout 1
297 fi
298
299 # == business-logic of command line parameter-processing
300
301 # source configuration file in <confdir> if supplied. {{{
302 [ "$_opt_confdir" ] && {
303   CONFFILES=$_opt_confdir
304   einfo "Using config files under $CONFFILES/."
305   if ! [ -r "$CONFFILES/config" ] ; then
306     eerror "Error: config file $CONFFILES/config not found."; eend 1; bailout 1
307   fi
308   if ! . "$CONFFILES/config" ; then
309     eerror "Error reading config file $CONFFILES/config" ; eend 1 ; bailout 1
310   fi
311   # restore the command line parameter value
312   CONFFILES=$_opt_confdir
313 }
314 # }}}
315
316 [ "$_opt_mirror" ]              && MIRROR=$_opt_mirror
317 [ "$_opt_iso" ]                 && ISO=$_opt_iso
318 [ "$_opt_release" ]             && RELEASE=$_opt_release
319 [ "$_opt_target" ]              && TARGET=$_opt_target
320 [ "$_opt_vm" ]                  && VIRTUAL=1
321 [ "$_opt_vmfile" ]              && VMFILE=1 && VIRTUAL=1
322 [ "$_opt_vmsize" ]              && VMSIZE=$_opt_vmsize
323 [ "$_opt_mntpoint" ]            && MNTPOINT=$_opt_mntpoint
324 [ "$_opt_debopt" ]              && DEBOOTSTRAP_OPT=$_opt_debopt
325 [ "$_opt_interactive" ]         && INTERACTIVE=1
326 [ "$_opt_config" ]              && CONFIGFILE=$_opt_config
327 [ "$_opt_filesystem" ]          && MKFS="mkfs.$_opt_filesystem"
328 [ "$_opt_packages_set" ]        && PACKAGES='yes'
329 [ "$_opt_nopackages" ]          && PACKAGES=''
330 [ "$_opt_debconf_set" ]         && DEBCONF='yes'
331 [ "$_opt_scripts_set" ]         && SCRIPTS='yes'
332 [ "$_opt_pre_scripts_set" ]     && PRE_SCRIPTS='yes'
333 [ "$_opt_chroot_scripts_set" ]  && CHROOT_SCRIPTS='yes'
334 [ "$_opt_keep_src_list" ]       && KEEP_SRC_LIST='yes'
335 [ "$_opt_grmlrepos" ]           && GRMLREPOS='yes'
336 [ "$_opt_backportrepos" ]       && BACKPORTREPOS='yes'
337 [ "$_opt_hostname" ]            && HOSTNAME=$_opt_hostname
338 [ "$_opt_password" ]            && ROOTPASSWORD=$_opt_password
339 [ "$_opt_nopassword" ]          && NOPASSWORD='yes'
340 [ "$_opt_defaultinterfaces" ]   && USE_DEFAULT_INTERFACES="true"
341 [ "$_opt_nointerfaces" ]        && NOINTERFACES="true"
342 [ "$_opt_nokernel" ]            && NOKERNEL="true"
343 [ "$_opt_bootappend" ]          && BOOT_APPEND=$_opt_bootappend
344 [ "$_opt_grub" ]                && GRUB=$_opt_grub
345 [ "$_opt_arch" ]                && ARCH=$_opt_arch
346 [ "$_opt_insecure" ]            && echo "Warning: --insecure is deprecated, continuing anyway."
347 [ "$_opt_force" ]               && FORCE=$_opt_force
348 [ "$_opt_verbose" ]             && VERBOSE="-v"
349 [ "$_opt_debug" ]               && DEBUG="true"
350
351 if [ "$DEBUG" = "true" ] ; then
352   set -x
353 fi
354
355 [ "$_opt_help" ] && {
356   usage ; eend 0
357   eend 0
358   exit 0
359 }
360
361 [ "$_opt_version" ] && {
362   einfo "$PN - version $VERSION"
363   einfo "Send bug reports to bugs@grml.org or http://grml.org/bugs/"
364   eend 0
365   exit 0
366 }
367 # }}}
368
369 # check for root permissions {{{
370 if ! check4root ; then
371    echo "For usage instructions please execute '$PN --help'."
372    bailout 1
373 fi
374 # }}}
375
376 # make sure we have what we need {{{
377 if [ -n "$VIRTUAL" ] ; then
378   check4progs kpartx mksh parted qemu-img || bailout 1
379 fi
380 # }}}
381
382 # source specified configuration file {{{
383 if [ -n "$CONFIGFILE" ] ; then
384    einfo "Reading specified config file $CONFIGFILE."
385    if ! . "$CONFIGFILE" ; then
386       eerror "Error reading config file $CONFIGFILE" ; eend 1 ; bailout 1
387    fi
388 fi
389 # }}}
390
391 # backwards compability checks {{{
392 if [ -n "$GROOT" ] ; then
393    eerror "Error: you seem to have \$GROOT configured."
394    eerror "This variable is no longer supported, please visit the"
395    eerror "grml-debootstrap documentation for details."
396    eend 1
397    bailout 1
398 fi
399
400 if echo "$GRUB" | grep -q '^hd' ; then
401    eerror "Error: this syntax for the grub configuration variable is no longer supported."
402    eerror "Please do not use hd... any longer but /dev/sdX instead."
403    eend 1
404    bailout 1
405 fi
406 # }}}
407
408 # welcome screen {{{
409 welcome_dialog()
410 {
411    dialog --title "$PN" --yesno "Welcome to the interactive configuration of ${PN}.
412 Do you want to continue installing Debian using this frontend?" 0 0 || bailout 0
413 }
414 # }}}
415
416 # ask for target {{{
417 prompt_for_target()
418 {
419   AVAILABLE_PARTITIONS=$(LANG=C fdisk -l 2>/dev/null | \
420                sed 's/*//' | \
421                grep -v 'Extended$' | \
422                gawk -v num=0 -v ORS=' ' '/^\/dev\// {print $1}'; ls /dev/md[0-9]* 2>/dev/null || true);
423
424   if [ -z "$AVAILABLE_PARTITIONS" ] ; then
425      dialog --title "$PN" --trim \
426      --msgbox "Sorry, no partitions found. Please configure your
427      harddisks (see /proc/partitions) using a tool like fdisk,
428      cfdisk, gpart, gparted,..." 0 0
429      bailout 1
430   fi
431
432   PARTITION_LIST=$(for i in $AVAILABLE_PARTITIONS ; do
433                      fs="$(blkid -s TYPE -o value "$i" 2>/dev/null)"
434                      [ -n "$fs" ] || fs='[no_filesystem_yet]'
435                      echo "$i" "$fs"
436                      unset fs
437                    done)
438
439   TARGET=$(dialog --title "$PN" --single-quoted --stdout \
440          --menu "Please select the target partition:" 0 0 0 \
441          $PARTITION_LIST)
442   [ $? -eq 0 ] || bailout 1
443 }
444 # }}}
445
446 # ask for bootmanager {{{
447 prompt_for_bootmanager()
448 {
449   ADDITIONAL_PARAMS=""
450
451   if echo "$TARGET" | grep -q "/dev/md" ; then
452      MBRPART="all disks of Software RAID $TARGET"
453   else
454      # figure out whole disk device
455      found=
456      for device in /dev/disk/by-id/*
457      do
458         [ "$(readlink -f "$device")" = "${TARGET}" ] || continue
459         found=1
460         break
461      done
462      [ -n "$found" ] && MBRDISK=$(echo "${device}" |sed -e 's/-part[0-9][0-9]*$//')
463      if [ -e "$MBRDISK" ]; then
464         MBRDISK=$(readlink -f "$MBRDISK")
465      else
466         # fall back to old behaviour
467         MBRDISK=$(echo "${TARGET}" | sed -e 's/[0-9][0-9]*$//')
468      fi
469
470      MBRPART="MBR of $MBRDISK"
471   fi
472
473   for device in cciss/c0d0 sda hda; do
474     if [ "/dev/$device" != "${MBRDISK}" ]; then
475       grep -q $device /proc/partitions && \
476       ADDITIONAL_PARAMS="$ADDITIONAL_PARAMS:$device:install bootmanager grub into MBR of /dev/$device"
477     fi
478   done
479   ADDITIONAL_PARAMS=${ADDITIONAL_PARAMS#:}
480
481   OIFS="$IFS"; IFS=:
482
483   GETMBR=$(dialog --stdout --title "$PN" --default-item mbr \
484           --menu "Where do you want to install the bootmanager grub?" 0 0 0 \
485             mbr       "install bootmanager into $MBRPART" \
486             nowhere   "do not install bootmanager at all" \
487           ${ADDITIONAL_PARAMS})
488   [ $? -eq 0 ] || bailout 3
489   IFS="$OIFS"
490
491   case "$GETMBR" in
492     mbr)
493       # /dev/md0: has to be installed in MBR of /dev/md0 and not in /dev/md:
494       if echo "$TARGET" | grep -q "/dev/md" ; then
495         GRUB="$TARGET"
496       else
497         GRUB="$MBRDISK"
498       fi
499       ;;
500     hda)
501       GRUB="/dev/hda"
502       ;;
503     sda)
504       GRUB="/dev/sda"
505       ;;
506     nowhere)
507       GRUB=''
508       ;;
509   esac
510 }
511 # }}}
512
513 # ask for Debian release {{{
514 prompt_for_release()
515 {
516   [ -n "$RELEASE" ] && DEFAULT_RELEASE="$RELEASE" || DEFAULT_RELEASE='jessie'
517   RELEASE="$(dialog --stdout --title "${PN}" --default-item $DEFAULT_RELEASE --menu \
518             "Please enter the Debian release you would like to use for installation:" \
519             0 50 5 \
520             lenny    Debian/5.0 \
521             squeeze  Debian/6.0 \
522             wheezy   Debian/7.0 \
523             jessie   Debian/8.0 \
524             sid      Debian/unstable)"
525   [ $? -eq 0 ] || bailout
526 }
527 # }}}
528
529 # ask for hostname {{{
530 prompt_for_hostname()
531 {
532   HOSTNAME="$(dialog --stdout --title "${PN}" --inputbox \
533             "Please enter the hostname you would like to use for installation:" \
534             0 0 "$HOSTNAME")"
535   [ $? -eq 0 ] || bailout
536 }
537 # }}}
538
539 # ask for password {{{
540 prompt_for_password()
541 {
542   if [ "$_opt_nopassword" ] ; then
543     einfo "Skip asking for root password as requested."
544     return 0
545   fi
546
547   ROOTPW1='PW1'
548   ROOTPW2='PW2'
549   while [ "$ROOTPW1" != "$ROOTPW2" ]; do
550     ROOTPW1=$(dialog --insecure --stdout --title "${PN}" --passwordbox \
551     "Please enter the password for the root account:" 10 60)
552     [ $? -eq 0 ] || bailout
553
554     ROOTPW2=$(dialog --insecure --stdout --title "${PN}" --passwordbox \
555     "Please enter the password for the root account again for \
556     confirmation:" 10 60)
557     [ $? -eq 0 ] || bailout
558
559     if [ "$ROOTPW1" != "$ROOTPW2" ]; then
560       dialog --stdout --title "${PN}" --ok-label \
561         "Retry" --msgbox "Passwords do not match!" 10 60
562     fi
563   done
564   ROOTPASSWORD="$ROOTPW1"
565 }
566 # }}}
567
568 # ask for Debian mirror {{{
569 prompt_for_mirror()
570 {
571   [ -n "$ISO" ] && DEFAULT_MIRROR='local' || DEFAULT_MIRROR='net'
572
573   CHOOSE_MIRROR=$(dialog --stdout --title "$PN" --default-item $DEFAULT_MIRROR \
574           --menu "Where do you want to install from?" 0 0 0 \
575             net   "install via network (downloading from mirror)" \
576             local "install from local directory/mirror"
577           )
578   [ $? -eq 0 ] || bailout
579
580   if [ "$CHOOSE_MIRROR" = 'net' ] ; then
581      [ -n "$MIRROR" ] || MIRROR='http://http.debian.net/debian'
582      MIRROR="$(dialog --stdout --title "${PN}" --inputbox \
583                "Please enter Debian mirror you would like to use for installing packages." \
584                0 0 $MIRROR)"
585      [ $? -eq 0 ] || bailout
586   else # CHOOSE_MIRROR == local
587      [ -n "$ISO" ] || ISO='/mnt/mirror'
588      ISO="$(dialog --stdout --title "${PN}" --inputbox \
589                "Please enter directory name you would like to use for installing packages." \
590                0 0 $ISO)"
591      [ $? -eq 0 ] || bailout
592   fi
593 }
594 # }}}
595
596 # software raid setup {{{
597 config_swraid_setup()
598 {
599 TMPFILE=$(mktemp)
600
601 # Currently we support only raid1:
602 RAIDLEVEL='raid1'
603
604 MD_LIST=$(for i in $(seq 0 9) ; do
605             awk '{print $4}' /proc/partitions | grep -q "md$i" || \
606             echo "/dev/md$i /dev/md$i"
607           done)
608
609 TARGET=$(dialog --stdout --title "$PN" --default-item /dev/md0 \
610 --menu "Which device do you want to use for ${RAIDLEVEL}?
611
612 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 \
613 $MD_LIST)
614 [ $? -eq 0 ] || bailout 20
615
616 AVAILABLE_PARTITIONS=$(LANG=C fdisk -l 2>/dev/null | \
617              sed 's/*//' | \
618              grep -v 'Extended$' | \
619              gawk -v num=0 -v ORS=' ' '/^\/dev\// {print $1}')
620 [ -n "$AVAILABLE_PARTITIONS" ] || echo "Fatal error: no partitions available?"
621 PARTITION_LIST=$(for i in $AVAILABLE_PARTITIONS ; do
622                      echo "$i $(blkid -s TYPE -o value "$i" 2>/dev/null || echo '[no_filesystem_yet]') off"
623                  done)
624
625 dialog --title "$PN" --separate-output \
626        --checklist "Please select the partitions you would like to use for your $RAIDLEVEL on ${TARGET}:" 0 0 0 \
627        $PARTITION_LIST 2>"$TMPFILE"
628 [ $? -eq 0 ] || bailout
629 SELECTED_PARTITIONS="$(cat "$TMPFILE")"
630
631 NUM_PARTITIONS=0
632 for i in $(cat "$TMPFILE") ; do
633    NUM_PARTITIONS=$(( NUM_PARTITIONS + 1 ))
634 done
635
636 # force metadata version 0.90 for lenny so old grub can boot from this array.
637 METADATA_VERSION=""
638 if [ "$RELEASE" = "lenny" ]; then
639    METADATA_VERSION="-e0"
640 fi
641
642 ERRORFILE=$(mktemp)
643 yes | mdadm --create "${TARGET}" --level="${RAIDLEVEL}" \
644       --raid-devices="${NUM_PARTITIONS}" ${METADATA_VERSION} ${SELECTED_PARTITIONS} >/dev/null 2>$ERRORFILE
645 RC=$?
646 if [ "$RC" = 0 ] ; then
647    dialog --title "$PN" --msgbox \
648    "Creating $TARGET was successful." 0 0
649    rm -f "$TMPFILE" "$ERRORFILE"
650 else
651    dialog --title "$PN" --msgbox \
652    "There was an error setting up $TARGET:
653
654 $(cat "$ERRORFILE")
655
656 Exiting." 0 0
657    rm -f "$TMPFILE" "$ERRORFILE"
658    bailout 1
659 fi
660
661 }
662
663 prompt_for_swraid()
664 {
665 if dialog --stdout --title "$PN" \
666           --defaultno --yesno "Do you want to configure Software RAID?
667
668 Please notice that only RAID level 1 is supported by ${PN} currently. Configuration will take place using mdadm." 0 0 ; then
669   config_swraid_setup
670 fi
671 }
672 # }}}
673
674 # user should recheck his configuration {{{
675 # support full automatic installation:
676 checkforrun() {
677    dialog --timeout 10 --title "$PN" \
678           --yesno "Do you want to stop at this stage?
679
680 Notice: you are running ${PN} in non-interactive mode.
681 ${PN} will install Debian ${RELEASE} on ${TARGET}.
682 Last chance to quit. Timeout of 10 seconds running....
683
684 Do you want to stop now?" 0 0 2>/dev/null
685 }
686 # }}}
687
688 # make sure the user is aware of the used configuration {{{
689 checkconfiguration()
690 {
691 if [ -n "$AUTOINSTALL" ] ; then
692    if checkforrun ; then
693       eerror "Exiting as requested" ; eend 0
694       bailout 1
695    fi
696 elif [ -n "$INTERACTIVE" ] ; then
697
698    INFOTEXT="Please recheck configuration before execution:
699    "
700    [ -n "$TARGET" ]  && INFOTEXT="$INFOTEXT
701    Target:          $TARGET"
702    [ -n "$GRUB" ]    && INFOTEXT="$INFOTEXT
703    Install grub:    $GRUB"
704    [ -n "$RELEASE" ] && INFOTEXT="$INFOTEXT
705    Using release:   $RELEASE"
706    [ -n "$HOSTNAME" ] && INFOTEXT="$INFOTEXT
707    Using hostname:  $HOSTNAME"
708    [ -n "$MIRROR" ]  && INFOTEXT="$INFOTEXT
709    Using mirror:    $MIRROR"
710    [ -n "$ISO" ]  && INFOTEXT="$INFOTEXT
711    Using ISO:       $ISO"
712    [ -n "$ARCH" ]  && INFOTEXT="$INFOTEXT
713    Using arch:      $ARCH"
714
715    INFOTEXT="$INFOTEXT
716
717 Is this ok for you? Notice: selecting 'No' will exit ${PN}."
718
719    dialog --title "$PN" --no-collapse \
720           --yesno "$INFOTEXT" 0 0
721    [ $? -eq 0 ] || bailout 0
722
723 else # if not running automatic installation display configuration and prompt for execution:
724    einfo "$PN [${VERSION}] - Please recheck configuration before execution:"
725    echo
726    echo "   Target:          $TARGET"
727
728    # do not display if MNTPOINT is the default one
729    case "$MNTPOINT" in /mnt/debootstrap*) ;; *) echo "   Mount point:     $MNTPOINT" ;; esac
730
731    if [ -n "$VIRTUAL" ] ; then
732       echo "   Install grub:    yes"
733    else
734      [ -n "$GRUB" ]     && echo "   Install grub:    $GRUB" || echo "   Install grub:    no"
735    fi
736
737    [ -n "$RELEASE" ]  && echo "   Using release:   $RELEASE"
738    [ -n "$HOSTNAME" ] && echo "   Using hostname:  $HOSTNAME"
739    [ -n "$MIRROR" ]   && echo "   Using mirror:    $MIRROR"
740    [ -n "$ISO" ]      && echo "   Using ISO:       $ISO"
741    [ -n "$ARCH" ]     && echo "   Using arch:      $ARCH"
742    if [ -n "$VIRTUAL" ] ; then
743       echo "   Deploying as Virtual Machine."
744       if [ -n "$VMSIZE" -a -n "$VMFILE" ]; then
745          echo "   Using Virtual Disk file with size of ${VMSIZE}."
746       fi
747    fi
748
749    if [ ! -t 0 -a -z "$ROOTPASSWORD" -a -z "$NOPASSWORD" ] ; then
750       echo
751       echo "   You do not have a TTY allocated, your password will be shown in"
752       echo "   plaintext on the terminal! If you are using SSH, try its -t option!"
753    fi
754
755    echo
756    echo "   Important! Continuing will delete all data from ${TARGET}!"
757
758    if [ -n "$FORCE" ] ; then
759      einfo "Skip user acknowledgement as requested via --force option."
760    else
761      echo
762      einfon "Is this ok for you? [y/N] "
763      read a
764      if ! [ "$a" = 'y' -o "$a" = 'Y' ] ; then
765         eerror "Exiting as requested." ; eend 1
766         bailout 1
767      fi
768    fi
769 fi
770 }
771 # }}}
772
773 # interactive mode {{{
774 interactive_mode()
775 {
776   check4progs dialog || bailout 1
777
778   welcome_dialog
779
780   prompt_for_release
781
782   prompt_for_swraid
783
784   prompt_for_target
785
786   prompt_for_bootmanager
787
788   prompt_for_hostname
789
790   prompt_for_password
791
792   prompt_for_mirror
793 }
794
795 # run interactive mode if we didn't get the according configuration yet
796 if [ -z "$TARGET" -o -n "$INTERACTIVE" ] ; then
797    # only target might be unset, so make sure the INTERACTIVE flag is set as well
798    INTERACTIVE=1
799    interactive_mode
800 fi
801 # }}}
802
803 # architecture setup {{{
804 if [ -n "$ARCH" ] ; then
805    ARCHCMD="--arch $ARCH"
806    ARCHINFO=" (${ARCH})"
807 else
808    ARCH="$(dpkg --print-architecture)"
809    ARCHCMD="--arch $ARCH"
810    ARCHINFO=" (${ARCH})"
811 fi
812 # }}}
813
814 # It is not possible to build amd64 on i686. {{{
815 CURRENT_ARCH="$(uname -m)"
816 if [ "$CURRENT_ARCH" != "x86_64" ] ; then
817    if [ "$ARCH" = "amd64" ] ; then
818       eerror "It is not possible to build amd64 on $CURRENT_ARCH." ; eend 1
819       bailout 1
820    fi
821 fi
822 # }}}
823
824 # Support for generic release codenames is unavailable. {{{
825 if [ "$RELEASE" = "stable" ] || [ "$RELEASE" = "testing" ] ; then
826    eerror "Generic release codenames (stable, testing) are unsupported. \
827 Please use specific codenames such as lenny, squeeze, wheezy or jessie." ; eend 1
828    bailout 1
829 fi
830 # }}}
831
832 checkconfiguration
833
834 # finally make sure at least $TARGET is set [the partition for the new system] {{{
835 if [ -n "$TARGET" ] ; then
836    SHORT_TARGET="${TARGET##*/}"
837 else
838    eerror "Please adjust $CONFFILES/config or..."
839    eerror "... use the interactive version for configuration before running ${0}" ; eend 1
840    bailout 1
841 fi
842 # }}}
843
844 # stages setup {{{
845 if [ -z "$STAGES" ] ; then
846    STAGES="/var/cache/grml-debootstrap/stages_${SHORT_TARGET}"
847    [ -d "$STAGES" ] || mkdir -p "$STAGES"
848 fi
849
850 if [ -r "$STAGES"/grml-debootstrap ] ; then
851    if grep -q 'done' "${STAGES}/grml-debootstrap" ; then
852       eerror "Error: grml-debootstrap has been executed already, won't continue therefore."
853       eerror "If you want to re-execute grml-debootstrap just manually remove ${STAGES}" ; eend 1
854    fi
855 fi
856 # }}}
857
858 # partition handling {{{
859 PARTITION=''
860 DIRECTORY=''
861
862 set_target_directory(){
863     # assume we are installing into a directory, don't run mkfs and grub related stuff therefore
864     DIRECTORY=1
865     MNTPOINT="$TARGET"
866     MKFS=''
867     TUNE2FS=''
868     FSCK=''
869     # make sure we normalise the path to an absolute directory name so something like:
870     #  mkdir -p foo/a bar/a; (cd foo; grml-debootstrap -t a)&; (cd bar; grml-debootstrap -t a)&; wait
871     # works
872     TARGET="$(readlink -f "$TARGET")"
873 }
874
875 if [ -b "$TARGET" ] || [ -n "$VIRTUAL" ] ; then
876     PARTITION=1
877 else
878     set_target_directory
879 fi
880 # }}}
881
882 # make sure we have the right syntax when using an iso image {{{
883 if [ -n "$ISO" ] ; then
884    case $ISO in
885       file*) # do nothing
886       ;;
887       *)
888       ISO=file:$ISO
889       ;;
890    esac
891 fi
892 ISODIR=${ISO##file:}
893 ISODIR=${ISODIR%%/}
894 # }}}
895
896 # Debian ISOs do not contain signed Release files {{{
897 if [ -n "$ISO" ] ; then
898     DEBOOTSTRAP_OPT="$DEBOOTSTRAP_OPT --no-check-gpg"
899 fi
900 # }}}
901
902 # create filesystem {{{
903 mkfs() {
904   if [ -n "$DIRECTORY" ] ; then
905      einfo "Running grml-debootstrap on a directory, skipping mkfs stage."
906      return 0
907   fi
908
909   if grep -q "$TARGET" /proc/mounts ; then
910     eerror "$TARGET already mounted, exiting to avoid possible damage. (Manually unmount $TARGET)" ; eend 1
911     bailout 1
912   fi
913
914   # mkfs.ext* might prompt with "/dev/sdX# contains a ext* file system
915   # created on ... Proceed anyway? (y,n)" which we want to skip in force mode
916   if [ -n "$MKFS" ] && [ -n "$FORCE" ] ; then
917     case "$MKFS" in
918       mkfs.ext*)
919         einfo "Enabling force option (-F) for mkfs.ext* tool as requested via --force switch."
920         MKFS_OPTS="$MKFS_OPTS -F"
921         eend 0
922         ;;
923     esac
924   fi
925
926   if [ -n "$MKFS" ] ; then
927     einfo "Running $MKFS $MKFS_OPTS on $TARGET"
928     "$MKFS" $MKFS_OPTS "$TARGET" ; RC=$?
929
930     if [ "$FIXED_DISK_IDENTIFIERS" = "yes" ] ; then
931       if ! echo "$MKFS" | grep -q "mkfs.ext" ; then
932         eerror "Not changing disk uuid for $TARGET because $MKFS doesn't seem to match for ext{2,3,4} file system"
933         eend 1
934         bailout 1
935       else
936         einfo "Changing disk uuid for $TARGET to fixed (non-random) value $DISK_IDENTIFIER using tune2fs"
937         tune2fs "$TARGET" -U "$DISK_IDENTIFIER"
938         eend $?
939       fi
940     fi
941
942     # make sure /dev/disk/by-uuid/... is up2date, otherwise grub
943     # will fail to detect the uuid in the chroot
944     if echo "$TARGET" | grep -q "/dev/md" ; then
945       blockdev --rereadpt "${TARGET}"
946     elif ! [ -n "$VIRTUAL" ] ; then
947       blockdev --rereadpt "${TARGET%%[0-9]*}"
948     fi
949     # give the system 2 seconds, otherwise we might run into
950     # race conditions :-/
951     sleep 2
952
953     eval "$(blkid -o udev "$TARGET" 2>/dev/null)"
954     [ -n "$ID_FS_UUID" ] && TARGET_UUID="$ID_FS_UUID" || TARGET_UUID=""
955
956     eend $RC
957   fi
958 }
959 # }}}
960
961 # modify filesystem settings {{{
962 tunefs() {
963   if [ -n "$TUNE2FS" ] && echo "$MKFS" | grep -q "mkfs.ext" ; then
964      einfo "Disabling automatic filesystem check on $TARGET via tune2fs"
965      $TUNE2FS "$TARGET"
966      eend $?
967   fi
968 }
969 # }}}
970
971 # mount the new partition or if it's a directory do nothing at all {{{
972 mount_target() {
973   if [ -n "$DIRECTORY" ] ; then
974      einfo "Running grml-debootstrap on a directory, nothing to mount."
975   else
976      if grep -q "$TARGET" /proc/mounts ; then
977         ewarn "$TARGET already mounted, continuing anyway." ; eend 0
978      else
979        if ! [ -d "${MNTPOINT}" ] ; then
980           [ -n "$VIRTUAL" ] || mkdir -p "${MNTPOINT}"
981        fi
982        einfo "Mounting $TARGET to $MNTPOINT"
983        mkdir -p "$MNTPOINT"
984        mount -o rw,suid,dev "$TARGET" "$MNTPOINT"
985        eend $?
986      fi
987   fi
988   if [ -n "$ISODIR" ] ; then
989      einfo "Mounting Debian image loopback to $MNTPOINT/$ISODIR."
990      mkdir -p "$MNTPOINT/$ISODIR"
991      mount --bind "$ISODIR" "$MNTPOINT/$ISODIR"
992      eend $?
993   fi
994 }
995 # }}}
996
997 # prepare VM image for usage with debootstrap {{{
998 prepare_vm() {
999   if [ -z "$VIRTUAL" ] ; then
1000      return 0 # be quiet by intention
1001   fi
1002
1003   if [ -b "$TARGET" -a -n "$VMFILE" ] ; then
1004      eerror "Error: specified virtual disk target ($TARGET) is an existing block device."
1005      eend 1
1006      bailout 1
1007   fi
1008   if [ ! -b "$TARGET" -a -z "$VMFILE" ] ; then
1009      eerror "Error: specified virtual disk target ($TARGET) does not exist yet."
1010      eend 1
1011      bailout 1
1012   fi
1013
1014   ORIG_TARGET="$TARGET" # store for later reuse
1015
1016   if [ -n "$VMFILE" ]; then
1017     qemu-img create -f raw "${TARGET}" "${VMSIZE}"
1018   fi
1019   echo 4 66 | /usr/share/grml-debootstrap/bootgrub.mksh -A | dd of="$TARGET" conv=notrunc
1020   dd if=/dev/zero bs=1 conv=notrunc count=64 seek=446 of="$TARGET"
1021   if [ "$FIXED_DISK_IDENTIFIERS" = "yes" ] ; then
1022     einfo "Adjusting disk signature to a fixed (non-random) value"
1023     MBRTMPFILE=$(mktemp)
1024     dd if="${TARGET}" of="${MBRTMPFILE}" bs=512 count=1
1025     echo -en "\x41\x41\x41\x41\x41" | dd of="${MBRTMPFILE}" conv=notrunc seek=440 bs=1
1026     dd if="${MBRTMPFILE}" of="${TARGET}" conv=notrunc
1027     eend $?
1028   fi
1029   parted -s "${TARGET}" 'mkpart primary ext4 2M -1'
1030
1031   # if dm-mod isn't available then kpartx will fail with
1032   # "Is device-mapper driver missing from kernel? [...]"
1033   if ! kpartx -av "$TARGET" >/dev/null 2>&1 || ! grep -q 'device-mapper' /proc/misc >/dev/null 2>&1 ; then
1034     einfo "Device-mapper not ready yet, trying to load dm-mod module."
1035     modprobe dm-mod ; eend $?
1036   fi
1037
1038   # make sure loop module is present
1039   if ! losetup -f >/dev/null 2>&1; then
1040     einfo "Can not find a usable loop device, retrying after loading loop module."
1041     modprobe loop
1042     if losetup -f >/dev/null 2>&1; then
1043       einfo "Found a usable loop device now, continuing."
1044     else
1045       eerror "Error finding usable loop device" ; eend 1
1046       bailout 1
1047     fi
1048   fi
1049
1050   DEVINFO=$(kpartx -asv "$TARGET") # 'add map loop1p1 (253:0): 0 6289408 linear /dev/loop1 2048'
1051   if [ -z "${DEVINFO}" ] ; then
1052     eerror "Error setting up loopback device." ; eend 1
1053     bailout 1
1054   fi
1055
1056   # hopefully this always works as expected
1057   LOOP=$(echo "${DEVINFO}" | sed 's/.* linear //; s/ [[:digit:]]*//') # 'loop1'
1058   LOOP_PART="$(echo "${DEVINFO##add map }" | sed 's/ .*//')" # 'loop1p1'
1059   export TARGET="/dev/mapper/$LOOP_PART" # '/dev/mapper/loop1p1'
1060
1061   blockdev --rereadpt "${LOOP}"
1062
1063   if [ -z "$TARGET" ] ; then
1064      eerror "Error: target could not be set to according /dev/mapper/* device." ; eend 1
1065      bailout 1
1066   fi
1067 }
1068 # }}}
1069
1070 # make VM image bootable and unmount it {{{
1071 finalize_vm() {
1072   if [ -z "${VIRTUAL}" ] ; then
1073      return 0
1074   fi
1075
1076   if ! mount "${TARGET}" "${MNTPOINT}" ; then
1077     eerror "Error: Mounting ${TARGET} failed, can not continue." ; eend 1
1078     bailout 1
1079   fi
1080
1081   einfo "Installing Grub as bootloader."
1082   mount -t proc none "${MNTPOINT}"/proc
1083   mount -t sysfs none "${MNTPOINT}"/sys
1084   mount --bind /dev "${MNTPOINT}"/dev
1085
1086   mkdir -p "${MNTPOINT}/boot/grub"
1087   if ! [ -d "${MNTPOINT}"/usr/lib/grub/i386-pc/ ] ; then
1088      eerror "Error: grub not installed inside Virtual Machine. Can not install bootloader." ; eend 1
1089      bailout 1
1090   fi
1091
1092   case "$RELEASE" in
1093     lenny|squeeze|wheezy)
1094       cp "${MNTPOINT}"/usr/lib/grub/i386-pc/* "${MNTPOINT}/boot/grub/"
1095       ;;
1096     *)
1097       cp -a "${MNTPOINT}"/usr/lib/grub/i386-pc "${MNTPOINT}/boot/grub/"
1098       ;;
1099   esac
1100   chroot "${MNTPOINT}" grub-mkimage -O i386-pc -p "(hd0,msdos1)/boot/grub" -o /tmp/core.img biosdisk part_msdos ext2
1101   dd if="${MNTPOINT}/tmp/core.img" of="${ORIG_TARGET}" conv=notrunc seek=4
1102   rm -f "${MNTPOINT}/tmp/core.img"
1103
1104   einfo "Updating grub configuration file."
1105   if [ -n "$BOOT_APPEND" ] ; then
1106      sed -i "/GRUB_CMDLINE_LINUX_DEFAULT/ s#\"\$# ${BOOT_APPEND}\"#" "${MNTPOINT}"/etc/default/grub
1107   fi
1108   chroot "${MNTPOINT}" update-grub
1109
1110   case "$RELEASE" in
1111     lenny|squeeze|wheezy)
1112       einfo "Adjusting grub.cfg for successful boot sequence."
1113       sed -i "s;root=[^ ]\+;root=UUID=$TARGET_UUID;" "${MNTPOINT}"/boot/grub/grub.cfg
1114       ;;
1115   esac
1116
1117   umount "${MNTPOINT}"/proc
1118   umount "${MNTPOINT}"/sys
1119   umount "${MNTPOINT}"/dev
1120   umount "${MNTPOINT}"
1121   kpartx -d "${ORIG_TARGET}" >/dev/null
1122 }
1123 # }}}
1124
1125 # install main chroot {{{
1126 debootstrap_system() {
1127   if [ "$_opt_nodebootstrap" ]; then
1128      einfo "Skipping debootstrap as requested."
1129      return
1130   fi
1131
1132   if grep -q "$MNTPOINT" /proc/mounts || [ -n "$DIRECTORY" ] ; then
1133     :
1134   else
1135     eerror "Error: $MNTPOINT not mounted, can not continue."
1136     eend 1 ; exit 1
1137   fi
1138
1139   if [ -n "$ISO" ] ; then
1140     einfo "Running $DEBOOTSTRAP $DEBOOTSTRAP_OPT for release ${RELEASE}${ARCHINFO} using ${ISO}"
1141     einfo "Executing: $DEBOOTSTRAP $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT $RELEASE $MNTPOINT $ISO"
1142     "$DEBOOTSTRAP" $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT "$RELEASE" "$MNTPOINT" "$ISO"
1143     RC=$?
1144   else
1145     einfo "Running $DEBOOTSTRAP $DEBOOTSTRAP_OPT for release ${RELEASE}${ARCHINFO} using ${MIRROR}"
1146     einfo "Executing: $DEBOOTSTRAP $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT $RELEASE $MNTPOINT $MIRROR"
1147     "$DEBOOTSTRAP" $ARCHCMD $KEYRING $DEBOOTSTRAP_OPT "$RELEASE" "$MNTPOINT" "$MIRROR"
1148     RC=$?
1149   fi
1150
1151   if [ $RC -ne 0 ] ; then
1152     if [ -r "$MNTPOINT/debootstrap/debootstrap.log" ] && \
1153       [ -s "$MNTPOINT/debootstrap/debootstrap.log" ] ; then
1154       einfo "Presenting last ten lines of debootstrap.log:"
1155       tail -10 "${MNTPOINT}"/debootstrap/debootstrap.log
1156       einfo "End of debootstrap.log"
1157     fi
1158   fi
1159
1160   eend $RC
1161 }
1162 # }}}
1163
1164 # prepare chroot via chroot-script {{{
1165 preparechroot() {
1166   einfo "Preparing chroot system"
1167
1168   # provide variables to chroot system
1169   CHROOT_VARIABLES="/var/cache/grml-debootstrap/variables_${SHORT_TARGET}"
1170   touch "$CHROOT_VARIABLES"
1171   chmod 600 "$CHROOT_VARIABLES" # make sure nobody except root can read it
1172   echo "# Configuration of ${PN}"                              > "$CHROOT_VARIABLES"
1173   [ -n "$ARCH" ]                && echo "ARCH=\"$ARCH\""                               >> "$CHROOT_VARIABLES"
1174   [ -n "$BACKPORTREPOS" ]       && echo "BACKPORTREPOS=\"$BACKPORTREPOS\""             >> "$CHROOT_VARIABLES"
1175   [ -n "$CHROOT_SCRIPTS" ]      && echo "CHROOT_SCRIPTS=\"$CHROOT_SCRIPTS\""           >> "$CHROOT_VARIABLES"
1176   [ -n "$CONFFILES" ]           && echo "CONFFILES=\"$CONFFILES\""                     >> "$CHROOT_VARIABLES"
1177   [ -n "$DEBCONF" ]             && echo "DEBCONF=\"$DEBCONF\""                         >> "$CHROOT_VARIABLES"
1178   [ -n "$DEBIAN_FRONTEND" ]     && echo "DEBIAN_FRONTEND=\"$DEBIAN_FRONTEND\""         >> "$CHROOT_VARIABLES"
1179   [ -n "$DEBOOTSTRAP" ]         && echo "DEBOOTSTRAP=\"$DEBOOTSTRAP\""                 >> "$CHROOT_VARIABLES"
1180   [ -n "$DEFAULT_LOCALES" ]     && echo "DEFAULT_LOCALES=\"$DEFAULT_LOCALES\""         >> "$CHROOT_VARIABLES"
1181   [ -n "$DEFAULT_LANGUAGE" ]    && echo "DEFAULT_LANGUAGE=\"$DEFAULT_LANGUAGE\""       >> "$CHROOT_VARIABLES"
1182   [ -n "$EXTRAPACKAGES" ]       && echo "EXTRAPACKAGES=\"$EXTRAPACKAGES\""             >> "$CHROOT_VARIABLES"
1183   [ -n "$FALLBACK_MIRROR" ]     && echo "FALLBACK_MIRROR=\"$FALLBACK_MIRROR\""         >> "$CHROOT_VARIABLES"
1184   [ -n "$FORCE" ]               && echo "FORCE=\"$FORCE\""                             >> "$CHROOT_VARIABLES"
1185   [ -n "$GRMLREPOS" ]           && echo "GRMLREPOS=\"$GRMLREPOS\""                     >> "$CHROOT_VARIABLES"
1186   [ -n "$GRUB" ]                && echo "GRUB=\"$GRUB\""                               >> "$CHROOT_VARIABLES"
1187   [ -n "$HOSTNAME" ]            && echo "HOSTNAME=\"$HOSTNAME\""                       >> "$CHROOT_VARIABLES"
1188   [ -n "$INITRD" ]              && echo "INITRD=\"$INITRD\""                           >> "$CHROOT_VARIABLES"
1189   [ -n "$INSTALL_NOTES" ]       && echo "INSTALL_NOTES=\"$INSTALL_NOTES\""             >> "$CHROOT_VARIABLES"
1190   [ -n "$ISODIR" ]              && echo "ISODIR=\"$ISO\""                              >> "$CHROOT_VARIABLES"
1191   [ -n "$ISO" ]                 && echo "ISO=\"$ISO\""                                 >> "$CHROOT_VARIABLES"
1192   [ -n "$KEEP_SRC_LIST" ]       && echo "KEEP_SRC_LIST=\"$KEEP_SRC_LIST\""             >> "$CHROOT_VARIABLES"
1193   [ -n "$LOCALES" ]             && echo "LOCALES=\"$LOCALES\""                         >> "$CHROOT_VARIABLES"
1194   [ -n "$MIRROR" ]              && echo "MIRROR=\"$MIRROR\""                           >> "$CHROOT_VARIABLES"
1195   [ -n "$MKFS" ]                && echo "MKFS=\"$MKFS\""                               >> "$CHROOT_VARIABLES"
1196   [ -n "$NOPASSWORD" ]          && echo "NOPASSWORD=\"true\""                          >> "$CHROOT_VARIABLES"
1197   [ -n "$NOKERNEL" ]            && echo "NOKERNEL=\"true\""                            >> "$CHROOT_VARIABLES"
1198   [ -n "$PACKAGES" ]            && echo "PACKAGES=\"$PACKAGES\""                       >> "$CHROOT_VARIABLES"
1199   [ -n "$PRE_SCRIPTS" ]         && echo "PRE_SCRIPTS=\"$PRE_SCRIPTS\""                 >> "$CHROOT_VARIABLES"
1200   [ -n "$RECONFIGURE" ]         && echo "RECONFIGURE=\"$RECONFIGURE\""                 >> "$CHROOT_VARIABLES"
1201   [ -n "$RELEASE" ]             && echo "RELEASE=\"$RELEASE\""                         >> "$CHROOT_VARIABLES"
1202   [ -n "$RM_APTCACHE" ]         && echo "RM_APTCACHE=\"$RM_APTCACHE\""                 >> "$CHROOT_VARIABLES"
1203   [ -n "$ROOTPASSWORD" ]        && echo "ROOTPASSWORD=\"$ROOTPASSWORD\""               >> "$CHROOT_VARIABLES"
1204   [ -n "$SCRIPTS" ]             && echo "SCRIPTS=\"$SCRIPTS\""                         >> "$CHROOT_VARIABLES"
1205   [ -n "$SECURE" ]              && echo "SECURE=\"$SECURE\""                           >> "$CHROOT_VARIABLES"
1206   [ -n "$SELECTED_PARTITIONS" ] && echo "SELECTED_PARTITIONS=\"$SELECTED_PARTITIONS\"" >> "$CHROOT_VARIABLES"
1207   [ -n "$TARGET" ]              && echo "TARGET=\"$TARGET\""                           >> "$CHROOT_VARIABLES"
1208   [ -n "$UPGRADE_SYSTEM" ]      && echo "UPGRADE_SYSTEM=\"$UPGRADE_SYSTEM\""           >> "$CHROOT_VARIABLES"
1209   [ -n "$TARGET_UUID" ]         && echo "TARGET_UUID=\"$TARGET_UUID\""                 >> "$CHROOT_VARIABLES"
1210   [ -n "$TIMEZONE" ]            && echo "TIMEZONE=\"$TIMEZONE\""                       >> "$CHROOT_VARIABLES"
1211   [ -n "$TUNE2FS" ]             && echo "TUNE2FS=\"$TUNE2FS\""                         >> "$CHROOT_VARIABLES"
1212   [ -n "$VMSIZE" ]              && echo "VMSIZE=\"$VMSIZE\""                           >> "$CHROOT_VARIABLES"
1213
1214   cp $VERBOSE "${CONFFILES}"/chroot-script "${MNTPOINT}"/bin/chroot-script
1215   chmod 755 "${MNTPOINT}"/bin/chroot-script
1216   [ -d "$MNTPOINT"/etc/debootstrap/ ] || mkdir "$MNTPOINT"/etc/debootstrap/
1217
1218   # make sure we have our files for later use via chroot-script
1219   cp $VERBOSE "${CONFFILES}/config"           "${MNTPOINT}"/etc/debootstrap/
1220   # make sure we adjust the configuration variables accordingly:
1221   sed -i "s#RELEASE=.*#RELEASE=\"$RELEASE\"#" "${MNTPOINT}"/etc/debootstrap/config
1222   sed -i "s#TARGET=.*#TARGET=\"$TARGET\"#"    "${MNTPOINT}"/etc/debootstrap/config
1223   sed -i "s#GRUB=.*#GRUB=\"$GRUB\"#"          "${MNTPOINT}"/etc/debootstrap/config
1224
1225   # install notes:
1226   if [ -n "$INSTALL_NOTES" ] ; then
1227      [ -r "$INSTALL_NOTES" ] && cp "$INSTALL_NOTES" "${MNTPOINT}"/etc/debootstrap/
1228   fi
1229
1230   # package selection:
1231   cp $VERBOSE "${_opt_packages:-$CONFFILES/packages}" \
1232     "${MNTPOINT}"/etc/debootstrap/packages
1233
1234   # debconf preseeding:
1235   _opt_debconf=${_opt_debconf:-$CONFFILES/debconf-selections}
1236   [ -f "${_opt_debconf}" ] && [ "$DEBCONF" = 'yes' ] && \
1237     cp $VERBOSE "${_opt_debconf}" "${MNTPOINT}"/etc/debootstrap/debconf-selections
1238
1239   # copy scripts that should be executed inside the chroot:
1240   _opt_chroot_scripts=${_opt_chroot_scripts:-$CONFFILES/chroot-scripts/}
1241   [ -d "$_opt_chroot_scripts" ] && [ "$CHROOT_SCRIPTS" = 'yes' ] && {
1242     mkdir -p "${MNTPOINT}"/etc/debootstrap/chroot-scripts
1243     cp -a $VERBOSE "${_opt_chroot_scripts}"/* "${MNTPOINT}"/etc/debootstrap/chroot-scripts/
1244   }
1245
1246   # notice: do NOT use $CHROOT_VARIABLES inside chroot but statically file instead!
1247   cp $VERBOSE "${CHROOT_VARIABLES}" "${MNTPOINT}"/etc/debootstrap/variables
1248
1249   cp $VERBOSE -a -L "${CONFFILES}"/extrapackages/ "${MNTPOINT}"/etc/debootstrap/
1250
1251   # make sure we can access network [relevant for cdebootstrap]
1252   [ -f "${MNTPOINT}"/etc/resolv.conf ] || cp $VERBOSE /etc/resolv.conf "${MNTPOINT}"/etc/resolv.conf
1253
1254   # provide system's /etc/hosts to the target:
1255   if ! [ -f "$MNTPOINT/etc/hosts" ] ; then
1256      cp $VERBOSE /etc/hosts "${MNTPOINT}"/etc/hosts
1257   fi
1258
1259   # setup default locales
1260   [ -n "$LOCALES" ] && cp $VERBOSE "${CONFFILES}"/locale.gen "${MNTPOINT}"/etc/locale.gen
1261
1262   # MAKEDEV is just a forking bomb crap, let's do it on our own instead :)
1263   ( cd "${MNTPOINT}"/dev && tar zxf /etc/debootstrap/devices.tar.gz )
1264
1265   # copy any existing files to chroot
1266   [ -d "${CONFFILES}"/bin   ] && cp $VERBOSE -a -L "${CONFFILES}"/bin/*   "${MNTPOINT}"/bin/
1267   [ -d "${CONFFILES}"/boot  ] && cp $VERBOSE -a -L "${CONFFILES}"/boot/*  "${MNTPOINT}"/boot/
1268   [ -d "${CONFFILES}"/etc   ] && cp $VERBOSE -a -L "${CONFFILES}"/etc/*   "${MNTPOINT}"/etc/
1269   [ -d "${CONFFILES}"/sbin  ] && cp $VERBOSE -a -L "${CONFFILES}"/sbin/*  "${MNTPOINT}"/sbin/
1270   [ -d "${CONFFILES}"/share ] && cp $VERBOSE -a -L "${CONFFILES}"/share/* "${MNTPOINT}"/share/
1271   [ -d "${CONFFILES}"/usr   ] && cp $VERBOSE -a -L "${CONFFILES}"/usr/*   "${MNTPOINT}"/usr/
1272   [ -d "${CONFFILES}"/var   ] && cp $VERBOSE -a -L "${CONFFILES}"/var/*   "${MNTPOINT}"/var/
1273
1274   # network setup
1275   DEFAULT_INTERFACES="# /etc/network/interfaces - generated by grml-debootstrap
1276
1277 # Include files from /etc/network/interfaces.d when using
1278 # ifupdown v0.7.44 or newer:
1279 #source-directory /etc/network/interfaces.d
1280
1281 auto lo
1282 iface lo inet loopback
1283
1284 allow-hotplug eth0
1285 iface eth0 inet dhcp
1286 "
1287
1288   if [ -n "$NOINTERFACES" ] ; then
1289     einfo "Not installing /etc/network/interfaces as requested via --nointerfaces option" ; eend 0
1290   elif [ -n "$USE_DEFAULT_INTERFACES" ] ; then
1291     einfo "Installing default /etc/network/interfaces as requested via --defaultinterfaces options."
1292     echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces"
1293     eend $?
1294   elif [ -n "$VIRTUAL" ] ; then
1295     einfo "Setting up Virtual Machine, installing default /etc/network/interfaces"
1296     echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces"
1297     eend $?
1298   elif [ -r /etc/network/interfaces ] ; then
1299     einfo "Copying /etc/network/interfaces from host to target system"
1300     cp $VERBOSE /etc/network/interfaces "${MNTPOINT}/etc/network/interfaces"
1301     eend $?
1302   else
1303     ewarn "Couldn't read /etc/network/interfaces, installing default /etc/network/interfaces"
1304     echo "$DEFAULT_INTERFACES" > "${MNTPOINT}/etc/network/interfaces"
1305     eend $?
1306   fi
1307
1308   # install config file providing some example entries
1309   if [ -r /etc/network/interfaces.examples -a ! -r "$MNTPOINT/etc/network/interfaces.examples" ] ; then
1310      cp /etc/network/interfaces.examples "$MNTPOINT/etc/network/interfaces.examples"
1311   fi
1312
1313   eend 0
1314 }
1315 # }}}
1316
1317 # execute all scripts in /etc/debootstrap/pre-scripts/ {{{
1318 execute_pre_scripts() {
1319    # make sure we have $MNTPOINT available for our scripts
1320    export MNTPOINT
1321    if [ -d "$_opt_pre_scripts" ] || [ "$PRE_SCRIPTS" = 'yes' ] ; then
1322       [ -d "$_opt_pre_scripts" ] && pre_scripts="$_opt_pre_scripts" || pre_scripts="$CONFFILES/pre-scripts/"
1323       for script in ${pre_scripts}/* ; do
1324          if [ -x "$script" ] ; then
1325             einfo "Executing pre-script $script"
1326             $script ; eend $?
1327          fi
1328       done
1329    fi
1330 }
1331 # }}}
1332
1333 # execute all scripts in /etc/debootstrap/scripts/ {{{
1334 execute_scripts() {
1335    # make sure we have $MNTPOINT available for our scripts
1336    export MNTPOINT
1337    if [ -d "$_opt_scripts" ] || [ "$SCRIPTS" = 'yes' ] ; then
1338       [ -d "$_opt_scripts" ] && scripts="$_opt_scripts" || scripts="$CONFFILES/scripts/"
1339       for script in ${scripts}/* ; do
1340          if [ -x "$script" ] ; then
1341             einfo "Executing script $script"
1342             $script ; eend $?
1343          fi
1344       done
1345    fi
1346 }
1347 # }}}
1348
1349 try_umount() {
1350   local tries=$1
1351   local mountpoint="$2"
1352
1353   for (( try=1; try<=tries; try++ )); do
1354     if [[ ${try} -eq ${tries} ]]; then
1355       # Last time, show errors this time
1356       umount "${mountpoint}" && return 0
1357     else
1358       # Not last time, hide errors until fatal
1359       if umount "${mountpoint}" 2>/dev/null ; then
1360         return 0
1361       else
1362         sleep 1
1363       fi
1364     fi
1365   done
1366   return 1  # Tried enough
1367 }
1368
1369 # execute chroot-script {{{
1370 chrootscript() {
1371   if ! [ -r "$MNTPOINT/bin/chroot-script" ] ; then
1372     mount_target
1373   fi
1374
1375   if ! [ -x "$MNTPOINT/bin/chroot-script" ] ; then
1376     eerror "Fatal: $MNTPOINT/bin/chroot-script could not be found."
1377     eend 1
1378   else
1379     einfo "Executing chroot-script now"
1380     mount --bind /dev "$MNTPOINT"/dev
1381     if [ "$DEBUG" = "true" ] ; then
1382       chroot "$MNTPOINT" /bin/sh -x /bin/chroot-script ; RC=$?
1383     else
1384       chroot "$MNTPOINT" /bin/chroot-script ; RC=$?
1385     fi
1386     try_umount 3 "$MNTPOINT"/dev
1387     eend $RC
1388   fi
1389
1390   # finally get rid of chroot-script again, there's no good reason to
1391   # keep it on the installed system
1392   if grep -q GRML_CHROOT_SCRIPT_MARKER "${MNTPOINT}/bin/chroot-script" ; then
1393     einfo "Removing chroot-script again"
1394     rm -f "${MNTPOINT}/bin/chroot-script"
1395     eend $?
1396   else
1397     einfo "Keeping chroot-script as string GRML_CHROOT_SCRIPT_MARKER could not be found"
1398     eend 0
1399   fi
1400 }
1401 # }}}
1402
1403 # unmount $MNTPOINT {{{
1404 umount_chroot() {
1405
1406   # display installation notes:
1407   if [ -n "$INSTALL_NOTES" ] ; then
1408      [ -r "${MNTPOINT}/${INSTALL_NOTES}" ] && cat "${MNTPOINT}/${INSTALL_NOTES}"
1409   fi
1410
1411   if [ -n "$ISODIR" ] ; then
1412      if grep -q "$ISODIR" /proc/mounts ; then
1413         einfo "Unmount $MNTPOINT/$ISODIR"
1414         umount "$MNTPOINT/$ISODIR"
1415         eend $?
1416      fi
1417   fi
1418
1419   if grep -q "$MNTPOINT" /proc/mounts ; then
1420      if [ -n "$PARTITION" ] ; then
1421         einfo "Unmount $MNTPOINT"
1422         umount "$MNTPOINT"
1423         eend $?
1424      fi
1425   fi
1426 }
1427 # }}}
1428
1429 # execute filesystem check {{{
1430 fscktool() {
1431  if [ -n "$VIRTUAL" ] ; then
1432    einfo "Skipping filesystem check because we deploy a virtual machine."
1433    return 0
1434  fi
1435
1436  if [ "$FSCK" = 'yes' ] ; then
1437    [ -n "$FSCKTOOL" ] || FSCKTOOL="fsck.${MKFS#mkfs.}"
1438    einfo "Checking filesystem on $TARGET using $FSCKTOOL"
1439    "$FSCKTOOL" "$TARGET"
1440    eend $?
1441  fi
1442 }
1443 # }}}
1444
1445 # now execute all the functions {{{
1446 for i in prepare_vm mkfs tunefs mount_target debootstrap_system \
1447          preparechroot execute_pre_scripts chrootscript execute_scripts \
1448          umount_chroot finalize_vm fscktool ; do
1449     if stage "${i}" ; then
1450       if "$i" ; then
1451         stage "${i}" 'done' && rm -f "${STAGES}/${i}"
1452       else
1453         bailout 2 "$i"
1454       fi
1455     fi
1456 done
1457
1458 cleanup
1459 # }}}
1460
1461 # end dialog of autoinstallation {{{
1462 if [ -n "$AUTOINSTALL" ] ; then
1463    if dialog --title "${PN}" --pause "Finished execution of ${PN}.
1464 Automatically rebooting in 10 seconds.
1465
1466 Choose Cancel to skip rebooting." 10 60 10 ; then
1467      noeject noprompt reboot
1468   fi
1469 else
1470    einfo "Finished execution of ${PN}. Enjoy your Debian system." ; eend 0
1471 fi
1472 # }}}
1473
1474 ## END OF FILE #################################################################
1475 # vim: ai tw=100 expandtab foldmethod=marker shiftwidth=2