improve error handling
[grml-debootstrap.git] / chroot-script
1 #!/bin/bash
2 # Filename:      /etc/debootstrap/chroot-script
3 # Purpose:       script executed in chroot when installing Debian via grml-debootstrap
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see https://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 ################################################################################
8 # GRML_CHROOT_SCRIPT_MARKER - do not remove this line unless you want to keep
9 # this script as /bin/chroot-script on your new installed system
10 ################################################################################
11
12 # error_handler {{{
13 if [ "$REPORT_TRAP_ERR" = "yes" ] || [ "$FAIL_TRAP_ERR" = "yes" ]; then
14    set -e
15    set -E
16    set -o pipefail
17    trap "error_handler" ERR
18 fi
19 # }}}
20
21 # shellcheck disable=SC1091
22 . /etc/debootstrap/config    || exit 1
23 # shellcheck disable=SC1091
24 . /etc/debootstrap/variables || exit 1
25
26 [ -r /proc/1 ] || mount -t proc none /proc
27 [ -r /sys/kernel ] || mount -t sysfs none /sys
28
29 # variable checks {{{
30
31 # use aptitude only if it's available
32 if [ -x /usr/bin/aptitude ] ; then
33    APTUPDATE="aptitude update $DPKG_OPTIONS"
34    # Debian ISOs do not contain signed Release files
35    if [ -n "$ISO" ] ; then
36       APTINSTALL="aptitude -y --allow-untrusted --without-recommends install $DPKG_OPTIONS"
37       APTUPGRADE="aptitude -y --allow-untrusted safe-upgrade $DPKG_OPTIONS"
38    else
39       APTINSTALL="aptitude -y --without-recommends install $DPKG_OPTIONS"
40       APTUPGRADE="aptitude -y safe-upgrade $DPKG_OPTIONS"
41    fi
42 else
43    APTINSTALL="apt-get -y --no-install-recommends install $DPKG_OPTIONS"
44    APTUPDATE="apt-get update $DPKG_OPTIONS"
45    APTUPGRADE="apt-get -y upgrade $DPKG_OPTIONS"
46 fi
47
48 if [ -z "$STAGES" ] ; then
49    STAGES='/etc/debootstrap/stages'
50    [ -d "$STAGES" ] || mkdir -p "$STAGES"
51 fi
52 # }}}
53
54 # helper functions {{{
55 stage() {
56   if [ -n "$2" ] ; then
57      echo "$2" > "$STAGES/$1"
58      return 0
59   elif grep -q 'done' "$STAGES/$1" 2>/dev/null ; then
60      echo "   [*] Notice: stage $1 has been executed already, skipping execution therefore.">&2
61      return 1
62   fi
63   echo "   Executing stage ${1}"
64   return 0
65 }
66
67 askpass() {
68   # read -s emulation for dash. result is in $resp.
69   set -o noglob
70   [ -t 0 ] && stty -echo
71   read -r resp
72   [ -t 0 ] && stty echo
73   set +o noglob
74 }
75 # }}}
76
77 # define chroot mirror {{{
78 chrootmirror() {
79   if [ "$KEEP_SRC_LIST" = "yes" ] ; then
80     echo "KEEP_SRC_LIST has been enabled, skipping chrootmirror stage."
81     return
82   fi
83
84   if [ -z "$COMPONENTS" ] ; then
85     COMPONENTS='main'
86   fi
87   echo "Using repository components $COMPONENTS"
88
89   if [ -n "$ISO" ] ; then
90     echo "Adjusting sources.list for ISO (${ISO})."
91     echo "deb $ISO $RELEASE $COMPONENTS" > /etc/apt/sources.list
92
93     if [ -n "$MIRROR" ] ; then
94       echo "Adding mirror entry (${MIRROR}) to sources.list."
95       echo "deb $MIRROR $RELEASE $COMPONENTS" >> /etc/apt/sources.list
96     fi
97   else
98     if [ -n "$MIRROR" ] ; then
99       echo "Adjusting sources.list for mirror (${MIRROR})."
100       echo "deb $MIRROR $RELEASE $COMPONENTS" > /etc/apt/sources.list
101     fi
102   fi
103
104   # LTS support
105   case "$RELEASE" in
106     squeeze)
107       if [ -n "$MIRROR" ] ; then
108         echo "Release matching $RELEASE - enabling LTS support in sources.list"
109         echo "deb $MIRROR ${RELEASE}-lts $COMPONENTS" >> /etc/apt/sources.list
110       fi
111       ;;
112   esac
113
114   # add security.debian.org:
115   case "$RELEASE" in
116     unstable|sid|lenny) ;;  # no security pool available
117     squeeze|wheezy|jessie|stretch|buster)
118       echo "Adding security.debian.org to sources.list."
119       echo "deb http://security.debian.org ${RELEASE}/updates $COMPONENTS" >> /etc/apt/sources.list
120       ;;
121     *)
122       # bullseye and newer releases use a different repository layout, see
123       # https://lists.debian.org/debian-devel-announce/2019/07/msg00004.html
124       echo "Adding security.debian.org/debian-security to sources.list."
125       echo "deb http://security.debian.org/debian-security ${RELEASE}-security $COMPONENTS" >> /etc/apt/sources.list
126       ;;
127   esac
128 }
129 # }}}
130
131 # remove local chroot mirror {{{
132 remove_chrootmirror() {
133   if [ "$KEEP_SRC_LIST" = "yes" ] ; then
134     echo "KEEP_SRC_LIST has been enabled, skipping remove_chrootmirror stage."
135     return
136   fi
137
138   if [ -n "$ISO" ] ; then
139     echo "Removing ISO (${ISO}) from sources.list."
140     TMP_ISO="${ISO//\//\\\/}"
141     sed -i "/deb $TMP_ISO $RELEASE $COMPONENTS/ D" /etc/apt/sources.list
142   else
143     if [ -n "$MIRROR" ] && echo "$MIRROR" | grep -q 'file:' ; then
144       echo "Removing local mirror (${MIRROR}) from sources.list."
145       TMP_MIRROR="${MIRROR//\//\\\/}"
146       sed -i "/deb $TMP_MIRROR $RELEASE $COMPONENTS/ D" /etc/apt/sources.list
147       echo "Adding fallback mirror entry (${FALLBACK_MIRROR}) to sources.list instead."
148       echo "deb $FALLBACK_MIRROR $RELEASE $COMPONENTS" >> /etc/apt/sources.list
149     fi
150   fi
151 }
152 # }}}
153
154 # set up grml repository {{{
155 grmlrepos() {
156   if [ -z "$GRMLREPOS" ] ; then
157     return 0
158   fi
159
160   # user might have provided their own apt sources configuration
161   if [ -r /etc/apt/sources.list.d/grml.list ] ; then
162     echo "File /etc/apt/sources.list.d/grml.list exists already, not modifying."
163   else
164     echo "Setting up /etc/apt/sources.list.d/grml.list."
165     cat > /etc/apt/sources.list.d/grml.list << EOF
166 # grml: stable repository:
167   deb     [signed-by=/usr/share/keyrings/grml-archive-keyring.gpg] http://deb.grml.org/ grml-stable main
168   deb-src [signed-by=/usr/share/keyrings/grml-archive-keyring.gpg] http://deb.grml.org/ grml-stable main
169
170 # grml: testing/development repository:
171   deb     [signed-by=/usr/share/keyrings/grml-archive-keyring.gpg] http://deb.grml.org/ grml-testing main
172   deb-src [signed-by=/usr/share/keyrings/grml-archive-keyring.gpg] http://deb.grml.org/ grml-testing main
173 EOF
174   fi
175
176   # make sure we install packages from Grml's pool only if not available from Debian
177   if [ -r /etc/apt/preferences.d/grml.pref ] ; then
178     echo "File /etc/apt/preferences.d/grml.pref exists already, not modifying."
179   else
180     echo "Setting up /etc/apt/preferences.d/grml.pref."
181     cat > /etc/apt/preferences.d/grml.pref << EOF
182 Explanation: use Grml repository only after Debian ones
183 Package: *
184 Pin: origin deb.grml.org
185 Pin-Priority: 100
186 EOF
187   fi
188
189   apt-get update -o Acquire::AllowInsecureRepositories=1
190   apt-get -y --allow-unauthenticated install grml-debian-keyring
191   apt-get update
192
193   if [ "$(dpkg-query -f "\${db:Status-Status} \${db:Status-Eflag}" -W grml-debian-keyring 2>/dev/null)" != 'installed ok' ]; then
194     echo "Error: installation of grml-debian-keyring failed." >&2
195     exit 1
196   fi
197 }
198 # }}}
199
200 # feature to provide Debian backports repos {{{
201 backportrepos() {
202   if [ -n "$BACKPORTREPOS" ] ; then
203     cat >> /etc/apt/sources.list.d/backports.list << EOF
204 # debian backports: ${RELEASE}-backports repository:
205 deb     ${MIRROR} ${RELEASE}-backports main
206 deb-src ${MIRROR} ${RELEASE}-backports main
207 EOF
208   fi
209 }
210 # }}}
211
212 # set up kernel-img.conf {{{
213 kernelimg_conf() {
214   if ! [ -r /etc/kernel-img.conf ] ; then
215      echo "Setting up /etc/kernel-img.conf"
216      cat > /etc/kernel-img.conf << EOF
217 # Kernel Image management overrides
218 # See kernel-img.conf(5) for details
219 do_initrd = Yes
220 do_symlinks = Yes
221 EOF
222   fi
223 }
224 # }}}
225
226 # make sure services do not start up {{{
227 install_policy_rcd() {
228   if ! [ -r /usr/sbin/policy-rc.d ] ; then
229      export POLICYRCD=1
230      cat > /usr/sbin/policy-rc.d << EOF
231 #!/bin/sh
232 exit 101
233 EOF
234      chmod 775 /usr/sbin/policy-rc.d
235   fi
236 }
237 # }}}
238
239 # make sure we have an up2date system {{{
240 upgrade_system() {
241   if [ "$UPGRADE_SYSTEM" = "yes" ] ; then
242     echo "Running update + upgrade"
243     $APTUPDATE
244     DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTUPGRADE
245   else
246     echo "Not running update + upgrade as \$UPDATE_AND_UPGRADE is not set to 'yes'."
247   fi
248 }
249
250 # }}}
251 # remove now useless apt cache {{{
252 remove_apt_cache() {
253   if [ "$RM_APTCACHE" = 'yes' ] ; then
254     echo "Cleaning apt cache."
255     # shellcheck disable=SC2086
256     apt-get clean $DPKG_OPTIONS
257   else
258     echo "Not cleaning apt cache as \$RM_APTCACHE is unset."
259   fi
260 }
261 # }}}
262
263 # install additional packages {{{
264 packages() {
265   # Pre-seed the debconf database with answers. Each question will be marked
266   # as seen to prevent debconf from asking the question interactively.
267   [ -f /etc/debootstrap/debconf-selections ] && {
268     echo "Preseeding the debconf database, some lines might be skipped..."
269     debconf-set-selections < /etc/debootstrap/debconf-selections
270   }
271
272   if [ "$PACKAGES" = 'yes' ] ; then
273      if ! [ -r /etc/debootstrap/packages ] ; then
274        echo "Error: /etc/debootstrap/packages (inside chroot) not found, exiting." >&2
275        exit 1
276      else
277        $APTUPDATE
278        # shellcheck disable=SC2086,SC2046
279        DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL $(grep -v '^#' /etc/debootstrap/packages) $GRMLPACKAGES
280      fi
281   fi
282 }
283 # }}}
284
285 # install extra packages {{{
286 extrapackages() {
287     if [ "$EXTRAPACKAGES" = 'yes' ] ; then
288         PACKAGELIST=$(find /etc/debootstrap/extrapackages -type f -name '*.deb')
289         if [ -n "$PACKAGELIST" ]; then
290             # shellcheck disable=SC2086
291             dpkg -i $PACKAGELIST
292             # run apt again to resolve any deps
293             DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL
294         fi
295     fi
296 }
297 # }}}
298
299 # check if the specified Debian package exists
300 package_exists() {
301   output=$(apt-cache show "$1" 2>/dev/null)
302   [ -n "$output" ]
303   return $?
304 }
305
306
307 # determine the kernel version postfix
308 get_kernel_version() {
309   # do not override $KERNEL if set via config file
310   if [ -n "$KERNEL" ] ; then
311     echo "$KERNEL"
312     return 0
313   fi
314
315   local KARCH
316
317   # shellcheck disable=SC2153
318   case "$ARCH" in
319     i386)
320       case "$RELEASE" in
321         lenny|squeeze|wheezy) KARCH='686' ;;
322         # since jessie the linux-image-686 image doesn't exist any longer
323         *) KARCH='686-pae' ;;
324       esac
325       ;;
326     amd64)
327       KARCH='amd64'
328       ;;
329     *)
330       echo "Only i386 and amd64 are currently supported" >&2
331       return 1
332   esac
333
334   for KPREFIX in "" "2.6-" ; do  # iterate through the kernel prefixes,
335                                  # currently "" and "2.6-"
336     if package_exists linux-image-${KPREFIX}${KARCH} ; then
337       echo ${KPREFIX}${KARCH}
338       return 0
339     fi
340
341   done
342 }
343
344 # install kernel packages {{{
345 kernel() {
346   if [ -n "$NOKERNEL" ] ; then
347     echo "Skipping installation of kernel packages as requested via --nokernel"
348     return 0
349   fi
350
351   $APTUPDATE
352   KVER=$(get_kernel_version)
353   if [ -n "$KVER" ] ; then
354      # note: install busybox to be able to debug initramfs
355      KERNELPACKAGES="linux-image-$KVER linux-headers-$KVER busybox firmware-linux-free"
356      # only add firmware-linux if we have non-free as a component
357      if expr "$COMPONENTS" : '.*non-free' >/dev/null ; then
358        KERNELPACKAGES="$KERNELPACKAGES firmware-linux"
359      fi
360      # shellcheck disable=SC2086
361      DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL $KERNELPACKAGES
362   else
363      echo "Warning: Could not find a kernel for your system. Your system won't be able to boot itself!"
364   fi
365 }
366 # }}}
367
368 # reconfigure packages {{{
369 reconfigure() {
370   if [ -n "$RECONFIGURE" ] ; then
371      for package in $RECONFIGURE ; do
372          if dpkg --list "$package" >/dev/null 2>&1 | grep -q '^ii' ; then
373            DEBIAN_FRONTEND=$DEBIAN_FRONTEND dpkg-reconfigure "$package" || \
374            echo "Warning: $package does not exist, can not reconfigure it."
375          fi
376      done
377   fi
378 }
379 # }}}
380
381 # set password of user root {{{
382 passwords()
383 {
384   if [ -n "$NOPASSWORD" ] ; then
385     echo "Skip setting root password as requested."
386     return 0
387   fi
388
389   echo "Activating shadow passwords."
390   shadowconfig on
391
392   CHPASSWD_OPTION=
393   if chpasswd --help 2>&1 | grep -q -- '-m,' ; then
394      CHPASSWD_OPTION='-m'
395   fi
396
397   if [ -n "$ROOTPASSWORD" ] ; then
398      echo root:"$ROOTPASSWORD" | chpasswd $CHPASSWD_OPTION
399      export ROOTPASSWORD=''
400   else
401     a='1'
402     b='2'
403      echo "Setting password for user root:"
404      while [ "$a" != "$b" ] ; do
405        printf "Enter new UNIX password for user root: "
406        askpass
407        a="$resp"
408        unset resp
409        echo
410        printf "Retype new UNIX password for user root: "
411        askpass
412        b="$resp"
413        unset resp
414        echo
415        if [ "$a" != "$b" ] ; then
416          echo "Sorry, passwords do not match. Retry."
417          a='1'
418          b='2'
419        else
420          echo root:"$a" | chpasswd $CHPASSWD_OPTION
421          unset a
422          unset b
423        fi
424      done
425   fi
426 }
427 # }}}
428
429 # set up /etc/hosts {{{
430 hosts() {
431   if ! [ -f /etc/hosts ] ; then
432      cat > /etc/hosts << EOF
433 127.0.0.1       localhost
434 ::1             localhost ip6-localhost ip6-loopback
435 ff02::1         ip6-allnodes
436 ff02::2         ip6-allrouters
437 EOF
438   fi
439 }
440 # }}}
441
442 # set default locales {{{
443 default_locales() {
444   if [ -n "$DEFAULT_LOCALES" ] ; then
445     if ! [ -x /usr/sbin/update-locale ] ; then
446       echo "Warning: update-locale executable not available (no locales package installed?)"
447       echo "Ignoring request to run update-locale for $DEFAULT_LOCALES therefore"
448       return 0
449     fi
450
451     /usr/sbin/update-locale LANGUAGE="$DEFAULT_LANGUAGE" LANG="$DEFAULT_LOCALES"
452   fi
453 }
454 # }}}
455
456 # adjust timezone {{{
457 timezone() {
458   if [ -n "$TIMEZONE" ] ; then
459     echo "Adjusting /etc/localtime"
460     ln -sf "/usr/share/zoneinfo/$TIMEZONE" /etc/localtime
461
462     echo "Setting /etc/timezone to $TIMEZONE"
463     printf '%s\n' "$TIMEZONE"  > /etc/timezone
464
465   fi
466 }
467 # }}}
468
469 # helper function for fstab() {{{
470 createfstab(){
471   echo "Setting up /etc/fstab"
472   cat > /etc/fstab <<EOF
473 # /etc/fstab - created by grml-debootstrap on $(date)
474 # Accessible filesystems, by reference, are maintained under '/dev/disk/'.
475 # See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info.
476 #
477 # After editing this file, run 'systemctl daemon-reload' to update systemd
478 # units generated from this file.
479 #
480 EOF
481
482   if [ -n "$TARGET_UUID" ] ; then
483     local rootfs_mount_options=""
484
485     if [ -z "${FILESYSTEM}" ] ; then
486       FILESYSTEM="$(blkid -o value -s TYPE /dev/disk/by-uuid/"${TARGET_UUID}")"
487     fi
488
489     case "${FILESYSTEM}" in
490       # errors=remount-ro is supported only by a few file systems
491       ext*|exfat|fat|jfs|nilfs2|vfat)
492         rootfs_mount_options=",errors=remount-ro"
493         ;;
494     esac
495
496     echo "/dev/disk/by-uuid/${TARGET_UUID} /  auto    defaults${rootfs_mount_options} 0   1" >> /etc/fstab
497   else
498     echo "Warning: couldn't identify target UUID for rootfs, your /etc/fstab might be incomplete."
499   fi
500
501 if [ -n "$EFI" ] ; then
502   # shellcheck disable=SC2086
503   echo "UUID=$(blkid -o value -s UUID $EFI)  /boot/efi       vfat    umask=0077      0       1" >> /etc/fstab
504 fi
505
506 cat >> /etc/fstab << EOF
507 proc           /proc        proc    defaults                      0   0
508 /dev/cdrom     /mnt/cdrom0  iso9660 ro,user,noauto                0   0
509 # some other examples:
510 # /dev/sda2       none         swap    sw,pri=0             0   0
511 # /dev/hda1       /Grml        ext3    dev,suid,user,noauto 0  2
512 # //1.2.3.4/pub   /smb/pub     cifs    user,noauto,uid=grml,gid=grml 0 0
513 # linux:/pub      /beer        nfs     defaults             0  0
514 # tmpfs           /tmp         tmpfs   size=300M            0  0
515 # /dev/sda5       none         swap    sw                   0  0
516 EOF
517 }
518 # }}}
519
520 # generate /etc/fstab {{{
521 fstab() {
522   # set up /etc/fstab if file is not present (cdebootstrap)
523   if [ ! -f /etc/fstab  ] ; then
524      createfstab
525   fi
526
527   # set up /etc/fstab if file is UNCONFIGURED (debootstrap)
528   if grep -q UNCONFIGURED /etc/fstab ; then
529      createfstab
530   fi
531 }
532 # }}}
533
534 # ensure we have according filesystem tools available {{{
535 install_fs_tools() {
536   local pkg=""
537
538   # note: this is supposed to be coming either via command lines'
539   # $_opt_filesystem or via createfstab()
540   case "${FILESYSTEM}" in
541     jfs)
542       pkg="jfsutils"
543       ;;
544     xfs)
545       pkg="xfsprogs"
546       ;;
547   esac
548
549   if [ -n "${pkg:-}" ] && ! dpkg --list "${pkg}" 2>/dev/null | grep -q '^ii' ; then
550     echo "Filesystem package ${pkg} not present, installing now"
551     DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL "${pkg}"
552   fi
553 }
554 # }}}
555
556 # set up hostname {{{
557 hostname() {
558   if [ -n "$HOSTNAME" ] ; then
559      echo "Setting hostname to ${HOSTNAME}."
560      echo "$HOSTNAME" > /etc/hostname
561
562      # adjust postfix configuration
563      if [ -r /etc/postfix/main.cf ] ; then
564         # adjust hostname related options:
565         sed -i "s/grml/$HOSTNAME/g" /etc/postfix/main.cf
566
567         # listen on loopback interface only:
568         sed -i "s/^inet_interfaces = .*/inet_interfaces = loopback-only/" /etc/postfix/main.cf
569         grep -q inet_interfaces /etc/postfix/main.cf || echo 'inet_interfaces = loopback-only' >> /etc/postfix/main.cf
570      fi
571      if [ -r /etc/mailname ] ; then
572         # adjust /etc/mailname
573         local etc_mail_domain
574         etc_mail_domain=$(/bin/dnsdomainname 2>/dev/null || echo localdomain)
575         case "$HOSTNAME" in
576           *.*)
577             local mailname="$HOSTNAME"
578             ;;
579           *)
580             local mailname="${HOSTNAME}.${etc_mail_domain}"
581             ;;
582         esac
583         echo "Setting mailname to ${mailname}"
584         echo "$mailname" > /etc/mailname
585      fi
586   fi
587 }
588 # }}}
589
590 # generate initrd/initramfs {{{
591 initrd() {
592   # assume the first available kernel as our main kernel
593   # shellcheck disable=SC2012
594   KERNELIMG=$(ls -1 /boot/vmlinuz-* 2>/dev/null | head -1)
595   if [ -z "$KERNELIMG" ] ; then
596      echo 'No kernel image found, skipping initrd stuff.'>&2
597      return
598   fi
599
600   KERNELVER=${KERNELIMG#/boot/vmlinuz-}
601
602   # generate initrd
603   if [ -n "$INITRD" ] ; then
604      echo "Generating initrd."
605      if [ "$INITRD_GENERATOR" = 'dracut' ] ; then
606          DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL dracut
607          dracut --no-hostonly --kver "$KERNELVER" --fstab --add-fstab /etc/fstab --force --reproducible $INITRD_GENERATOR_OPTS
608      else
609          update-initramfs -c -t -k "$KERNELVER" $INITRD_GENERATOR_OPTS
610      fi
611   fi
612 }
613 # }}}
614
615 efi_setup() {
616   if [ -z "$EFI" ] ; then
617     return 0
618   fi
619
620   if ! dpkg --list efibootmgr 2>/dev/null | grep -q '^ii' ; then
621     echo "Notice: efi option set but no efibootmgr package, installing it therefore."
622     DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL efibootmgr
623   fi
624
625   mkdir -p /boot/efi
626   echo "Mounting $EFI on /boot/efi"
627   mount "$EFI" /boot/efi || return 1
628
629   # if efivarfs kernel module is loaded, but efivars isn't,
630   # then we need to mount efivarfs for efibootmgr usage
631   if ! ls /sys/firmware/efi/efivars/* &>/dev/null ; then
632     echo "Mounting efivarfs on /sys/firmware/efi/efivars"
633     mount -t efivarfs efivarfs /sys/firmware/efi/efivars
634   fi
635
636   echo "Invoking efibootmgr"
637   efibootmgr || return 1
638 }
639
640 # grub configuration/installation {{{
641
642 # helper function to get relevant /dev/disk/by-id/* entries,
643 # based on GRUB's postinst script
644 available_ids() {
645   local path ids
646
647   [ -d /dev/disk/by-id ] || return
648   ids="$(
649     for path in /dev/disk/by-id/*; do
650       [ -e "${path}" ] || continue
651       printf '%s %s\n' "${path}" "$(readlink -f "${path}")"
652     done | sort -k2 -s -u | cut -d' ' -f1
653   )"
654   echo "${ids}"
655 }
656
657 # helper function to report corresponding /dev/disk/by-id/… for a given device name,
658 # based on GRUB's postinst script
659 device_to_id() {
660   local id
661
662   for id in $(available_ids); do
663     if [ "$(readlink -f "${id}")" = "$(readlink -f "$1")" ]; then
664       echo "${id}"
665       return 0
666     fi
667   done
668
669   # Fall back to the plain device name if there's no by-id link for it.
670   if [ -e "$1" ]; then
671     echo "$1"
672     return 0
673   fi
674   return 1
675 }
676
677 grub_install() {
678
679   if [ -z "$GRUB" ] ; then
680     echo "Notice: \$GRUB not defined, will not install grub inside chroot at this stage."
681     return 0
682   fi
683
684   efi_setup || return 1
685
686   if [ -n "$EFI" ] ; then
687     GRUB_PACKAGE=grub-efi-amd64
688   else
689     GRUB_PACKAGE=grub-pc
690   fi
691
692   # make sure this is pre-defined so we have sane settings for automated
693   # upgrades, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=711019
694   local grub_device
695   grub_device=$(device_to_id "${GRUB}")
696   if [ -z "${grub_device:-}" ] ; then
697      echo "Warning: Could not identify /dev/disk/by-id/... for '${GRUB}', falling back to '${GRUB}'"
698      grub_device="${GRUB}"
699   fi
700
701   echo "Setting ${GRUB_PACKAGE} debconf configuration for install device to $GRUB"
702   echo "${GRUB_PACKAGE} ${GRUB_PACKAGE}/install_devices multiselect ${grub_device}" | debconf-set-selections
703
704   if ! dpkg --list ${GRUB_PACKAGE} 2>/dev/null | grep -q '^ii' ; then
705     echo "Notice: grub option set but no ${GRUB_PACKAGE} package, installing it therefore."
706     DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL ${GRUB_PACKAGE}
707   fi
708
709   if ! [ -x "$(command -v grub-install)" ] ; then
710      echo "Error: grub-install not available. (Error while installing grub package?)" >&2
711      return 1
712   fi
713
714   if [ -n "$SELECTED_PARTITIONS" ] ; then # using sw-raid
715      for device in $SELECTED_PARTITIONS ; do
716         GRUB="${device%%[0-9]}"
717         echo "Installing grub on ${GRUB}:"
718         if ! grub-install --no-floppy "$GRUB" ; then
719           echo "Error: failed to execute 'grub-install --no-floppy $GRUB'." >&2
720           exit 1
721         fi
722
723      done
724      rm -f /boot/grub/device.map
725   else
726      echo "Installing grub on ${GRUB}:"
727      case "$RELEASE" in
728        lenny|squeeze|wheezy)
729          local grub_dev
730          grub_dev="$(readlink -f "${GRUB}")"
731          if ! grub-install --no-floppy "${grub_dev}" ; then
732            echo "Error: failed to execute 'grub-install --no-floppy ${grub_dev}'." >&2
733            exit 1
734          fi
735          rm -f /boot/grub/device.map
736          ;;
737        *)
738          echo "(hd0) ${GRUB}" > /boot/grub/device.map
739          if ! grub-install "(hd0)" ; then
740            echo "Error: failed to execute 'grub-install (hd0)'." >&2
741            exit 1
742          fi
743          rm /boot/grub/device.map
744          ;;
745      esac
746   fi
747
748   echo "Adjusting grub configuration for use on ${GRUB}."
749
750   # finally install grub
751   if [ -x /usr/sbin/update-grub ] ; then
752      UPDATEGRUB='/usr/sbin/update-grub'
753   elif [ -x /sbin/update-grub ] ; then
754      UPDATEGRUB='/sbin/update-grub'
755   else
756     echo "Error: update-grub not available, can not execute it." >&2
757     return 1
758   fi
759
760   if [ -n "${BOOT_APPEND}" ] ; then
761     echo "Adding BOOT_APPEND configuration ['${BOOT_APPEND}'] to /etc/default/grub."
762     sed -i "/GRUB_CMDLINE_LINUX_DEFAULT/ s#\"\$# ${BOOT_APPEND}\"#" /etc/default/grub
763   fi
764
765   mountpoint /boot/efi &>/dev/null && umount /boot/efi
766
767   $UPDATEGRUB
768 }
769 # }}}
770
771 # execute all scripts present in /etc/debootstrap/chroot-scripts/ {{{
772 custom_scripts() {
773   [ -d /etc/debootstrap/chroot-scripts/ ] || return 0
774
775   for script in /etc/debootstrap/chroot-scripts/* ; do
776       echo "Executing script $script"
777       $script && echo "done" || echo "failed"
778   done
779 }
780 # }}}
781
782 # make sure we don't have any running processes left {{{
783 services() {
784   for service in ssh mdadm mdadm-raid ; do
785     if [ -x /etc/init.d/"$service" ] ; then
786        /etc/init.d/"$service" stop || true
787     fi
788   done
789 }
790 # }}}
791
792 # unmount /proc and make sure nothing is left {{{
793 finalize() {
794   # make sure we don't leave any sensible data
795   rm -f /etc/debootstrap/variables
796
797   [ -n "$POLICYRCD" ] && rm -f /usr/sbin/policy-rc.d
798
799   umount /sys/firmware/efi/efivars &>/dev/null || true
800
801   umount /sys >/dev/null 2>/dev/null || true
802   umount /proc >/dev/null 2>/dev/null || true
803 }
804 # }}}
805
806 # signal handler {{{
807 signal_handler() {
808   finalize
809   [ -n "$1" ] && EXIT="$1" || EXIT="1"
810   exit "$EXIT"
811 }
812 # }}}
813
814 # set signal handler {{{
815 trap signal_handler HUP INT QUIT TERM
816 # }}}
817
818 # execute the functions {{{
819
820  # always execute install_policy_rcd
821  install_policy_rcd
822
823  for i in chrootmirror grmlrepos backportrepos kernelimg_conf \
824      kernel packages extrapackages reconfigure hosts \
825      default_locales timezone fstab install_fs_tools hostname \
826      initrd grub_install passwords \
827      custom_scripts upgrade_system remove_apt_cache services \
828      remove_chrootmirror; do
829      if stage $i ; then
830        $i && stage $i 'done' || exit 1
831      fi
832   done
833   # always execute the finalize stage:
834   finalize
835 # }}}
836
837 # finally exit the chroot {{{
838   echo "Finished chroot installation, exiting."
839   exit 0
840 # }}}
841
842 ## END OF FILE #################################################################
843 # vim: ai tw=80 expandtab foldmethod=marker