89f0f8d14855ad633bb52f8efd68a7ee464189d9
[grml-debootstrap.git] / chroot-script
1 #!/bin/sh
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 http://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 . /etc/debootstrap/config    || exit 1
13 . /etc/debootstrap/variables || exit 1
14
15 [ -r /proc/1 ] || mount -t proc none /proc
16
17 # variable checks {{{
18
19 # use aptitude only if it's available
20 if [ -x /usr/bin/aptitude ] ; then
21    APTUPDATE='aptitude update'
22    # Debian ISOs do not contain signed Release files
23    if [ -n "$ISO" ] ; then
24       APTINSTALL="aptitude -y --allow-untrusted --without-recommends install $DPKG_OPTIONS"
25       APTUPGRADE='aptitude -y --allow-untrusted safe-upgrade'
26    else
27       APTINSTALL="aptitude -y --without-recommends install $DPKG_OPTIONS"
28       APTUPGRADE='aptitude -y safe-upgrade'
29    fi
30 else
31    APTINSTALL="apt-get --force-yes -y --no-install-recommends install $DPKG_OPTIONS"
32    APTUPDATE='apt-get update'
33    APTUPGRADE='apt-get --force-yes -y upgrade'
34 fi
35
36 if [ -z "$STAGES" ] ; then
37    STAGES='/etc/debootstrap/stages'
38    [ -d "$STAGES" ] || mkdir -p "$STAGES"
39 fi
40 # }}}
41
42 # helper functions {{{
43 stage() {
44   if [ -n "$2" ] ; then
45      echo "$2" > "$STAGES/$1"
46      return 0
47   elif grep -q done "$STAGES/$1" 2>/dev/null ; then
48      echo "   [*] Notice: stage $1 has been executed already, skipping execution therefore.">&2
49      return 1
50   fi
51   echo "   Executing stage ${1}"
52   return 0
53 }
54
55 askpass() {
56   # read -s emulation for dash. result is in $resp.
57   set -o noglob
58   stty -echo
59   read resp
60   stty echo
61   set +o noglob
62 }
63 # }}}
64
65 # define chroot mirror {{{
66 chrootmirror() {
67   if [ -n "$KEEP_SRC_LIST" ] ; then
68     echo "KEEP_SRC_LIST has been set, skipping chrootmirror stage."
69     return
70   fi
71
72   if [ -z "$COMPONENTS" ] ; then
73     COMPONENTS='main contrib non-free'
74   fi
75   echo "Using repository components $COMPONENTS"
76
77   if [ -n "$ISO" ] ; then
78     echo "Adjusting sources.list for ISO (${ISO})."
79     echo "deb $ISO $RELEASE $COMPONENTS" > /etc/apt/sources.list
80     echo "Adding mirror entry (${MIRROR}) to sources.list."
81     [ -n "$MIRROR" ] && echo "deb $MIRROR $RELEASE $COMPONENTS" >> /etc/apt/sources.list || true
82   else
83     if [ -n "$MIRROR" ] ; then
84       echo "Adjusting sources.list for mirror (${MIRROR})."
85       echo "deb $MIRROR $RELEASE $COMPONENTS" > /etc/apt/sources.list
86     fi
87   fi
88
89   # add security.debian.org:
90   case "$RELEASE" in
91     unstable|sid) ;;  # no security pool available
92     *)
93       echo "Adding security.debian.org to sources.list."
94       echo "deb http://security.debian.org ${RELEASE}/updates $COMPONENTS" >> /etc/apt/sources.list
95       ;;
96   esac
97 }
98 # }}}
99
100 # remove local chroot mirror {{{
101 remove_chrootmirror() {
102   if [ -n "$KEEP_SRC_LIST" ] ; then
103     echo "KEEP_SRC_LIST has been set, skipping remove_chrootmirror stage."
104     return
105   fi
106
107   if [ -n "$ISO" ] ; then
108     echo "Removing ISO (${ISO}) from sources.list."
109     TMP_ISO=$(echo "$ISO" |sed 's#/#\\/#g')
110     sed -i "/deb $TMP_ISO $RELEASE $COMPONENTS/ D" /etc/apt/sources.list
111   else
112     if [ -n "$MIRROR" -a -n "$(echo $MIRROR|grep file:)" ] ; then
113       echo "Removing local mirror (${MIRROR}) from sources.list."
114       TMP_MIRROR=$(echo "$MIRROR" |sed 's#/#\\/#g')
115       sed -i "/deb $TMP_MIRROR $RELEASE $COMPONENTS/ D" /etc/apt/sources.list
116       echo "Adding fallback mirror entry (${FALLBACK_MIRROR}) to sources.list instead."
117       echo "deb $FALLBACK_MIRROR $RELEASE $COMPONENTS" >> /etc/apt/sources.list
118     fi
119   fi
120 }
121 # }}}
122
123 # set up grml repository {{{
124 grmlrepos() {
125   if [ -n "$GRMLREPOS" ] ; then
126      # user might have provided their own apt sources.list
127      if ! grep -q grml /etc/apt/sources.list.d/grml.list 2>/dev/null ; then
128         cat >> /etc/apt/sources.list.d/grml.list << EOF
129 # grml: stable repository:
130   deb     http://deb.grml.org/ grml-stable  main
131   deb-src http://deb.grml.org/ grml-stable  main
132
133 # grml: testing/development repository:
134   deb     http://deb.grml.org/ grml-testing main
135   deb-src http://deb.grml.org/ grml-testing main
136 EOF
137      fi
138
139      if apt-get update ; then
140        apt-get -y --allow-unauthenticated install grml-debian-keyring
141        apt-get update
142      else
143        # make sure we have the keys available for aptitude
144        gpg --keyserver subkeys.pgp.net --recv-keys F61E2E7CECDEA787
145        gpg --export F61E2E7CECDEA787 | apt-key add - || true # not yet sure
146        # why it's necessary, sometimes we get an error even though it works [mika]
147      fi
148
149      # make sure we install packages from Grml's pool only if not available
150      # from Debian!
151      if ! grep -q grml /etc/apt/preferences 2>/dev/null ; then
152         cat >> /etc/apt/preferences << EOF
153 // debian pool (default):
154 Package: *
155 Pin: release o=Debian
156 Pin-Priority: 996
157
158 // main grml-repository:
159 Package: *
160 Pin: origin deb.grml.org
161 Pin-Priority: 991
162 EOF
163      fi
164   fi
165 }
166 # }}}
167
168 # set up kernel-img.conf {{{
169 kernelimg_conf() {
170   if ! [ -r /etc/kernel-img.conf ] ; then
171      echo "Setting up /etc/kernel-img.conf"
172      cat > /etc/kernel-img.conf << EOF
173 # Kernel Image management overrides
174 # See kernel-img.conf(5) for details
175 do_initrd = Yes
176 do_symlinks = Yes
177 EOF
178   fi
179 }
180 # }}}
181
182 # make sure services do not start up {{{
183 install_policy_rcd() {
184   if ! [ -r /usr/sbin/policy-rc.d ] ; then
185      export POLICYRCD=1
186      cat > /usr/sbin/policy-rc.d << EOF
187 #!/bin/sh
188 exit 101
189 EOF
190      chmod 775 /usr/sbin/policy-rc.d
191   fi
192 }
193 # }}}
194
195 # make sure we have an up2date system {{{
196 upgrade_system() {
197   if [ "$UPGRADE_SYSTEM" = "yes" ] ; then
198     echo "Running update + upgrade"
199     $APTUPDATE
200     $APTUPGRADE
201   else
202     echo "Not running update + upgrade as \$UPDATE_AND_UPGRADE is not set to 'yes'."
203   fi
204 }
205
206 # }}}
207 # remove now useless apt cache {{{
208 remove_apt_cache() {
209   if [ "$RM_APTCACHE" = 'yes' ] ; then
210     echo "Cleaning apt cache."
211     apt-get clean
212   else
213     echo "Not cleaning apt cache as \$RM_APTCACHE is unset."
214   fi
215 }
216 # }}}
217
218 # install additional packages {{{
219 packages() {
220   # Pre-seed the debconf database with answers. Each question will be marked
221   # as seen to prevent debconf from asking the question interactively.
222   [ -f /etc/debootstrap/debconf-selections ] && {
223     echo "Preseeding the debconf database, some lines might be skipped..."
224     cat /etc/debootstrap/debconf-selections | debconf-set-selections
225   }
226
227   if [ "$PACKAGES" = 'yes' ] ; then
228      if ! [ -r /etc/debootstrap/packages ] ; then
229        echo "Error: /etc/debootstrap/packages (inside chroot) not found, exiting." >&2
230        exit 1
231      else
232        $APTUPDATE
233        DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL $(grep -v '^#' /etc/debootstrap/packages) $GRMLPACKAGES
234      fi
235   fi
236 }
237 # }}}
238
239 # install extra packages {{{
240 extrapackages() {
241     if [ "$EXTRAPACKAGES" = 'yes' ] ; then
242         PACKAGELIST=$(find /etc/debootstrap/extrapackages -type f -name '*.deb')
243         if [ -n "$PACKAGELIST" ]; then
244             dpkg -i $PACKAGELIST
245             # run apt again to resolve any deps
246             DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL
247         fi
248     fi
249 }
250 # }}}
251
252 # install kernel packages {{{
253 kernel() {
254   # do not override $KERNEL if set via config file
255   if [ -z "$KERNEL" ] ; then
256      if [ "$ARCH" = 'i386' ] ; then
257         KERNEL='2.6-686'
258      elif [ "$ARCH" = 'amd64' ] ; then
259         KERNEL='2.6-amd64'
260      fi
261   fi
262
263   if [ -n "$KERNEL" ] ; then
264      $APTUPDATE
265      # note: install busybox to be able to debug initramfs
266      KERNELPACKAGES="linux-image-$KERNEL linux-headers-$KERNEL busybox firmware-linux"
267      DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL $KERNELPACKAGES
268   fi
269 }
270 # }}}
271
272 # reconfigure packages {{{
273 reconfigure() {
274   if [ -n "$RECONFIGURE" ] ; then
275      for package in $RECONFIGURE ; do
276          if dpkg --list $package >/dev/null 2>&1 | grep -q '^ii' ; then
277            DEBIAN_FRONTEND=$DEBIAN_FRONTEND dpkg-reconfigure $package || \
278            echo "Warning: $package does not exist, can not reconfigure it."
279          fi
280      done
281   fi
282 }
283 # }}}
284
285 # set password of user root {{{
286 passwords()
287 {
288   if [ -n "$NOPASSWORD" ] ; then
289     echo "Skip setting root password as requested."
290     return 0
291   fi
292
293   echo "Activating shadow passwords."
294   shadowconfig on
295
296   CHPASSWD_OPTION=
297   if chpasswd --help 2>&1 | grep -q -- '-m,' ; then
298      CHPASSWD_OPTION='-m'
299   fi
300
301   if [ -n "$ROOTPASSWORD" ] ; then
302      echo root:"$ROOTPASSWORD" | chpasswd $CHPASSWD_OPTION
303      export ROOTPASSWORD=''
304   else
305     a='1'
306     b='2'
307      echo "Setting password for user root:"
308      while [ "$a" != "$b" ] ; do
309        echo -n "Enter new UNIX password for user root: "
310        askpass
311        a="$resp"
312        unset resp
313        echo
314        echo -n "Retype new UNIX password for user root: "
315        askpass
316        b="$resp"
317        unset resp
318        echo
319        if [ "$a" != "$b" ] ; then
320          echo "Sorry, passwords do not match. Retry."
321          a='1'
322          b='2'
323        else
324          echo root:"$a" | chpasswd $CHPASSWD_OPTION
325          unset a
326          unset b
327        fi
328      done
329   fi
330 }
331 # }}}
332
333 # set up /etc/hosts {{{
334 hosts() {
335   if [ -f /etc/hosts ] ; then
336      sed -i "s#127.0.0.1 .*#127.0.0.1       localhost  $HOSTNAME#" /etc/hosts
337      [ -n "$HOSTNAME" ] && sed -i "s/grml/$HOSTNAME/g" /etc/hosts
338   else
339      cat > /etc/hosts << EOF
340 127.0.0.1       localhost $HOSTNAME
341
342 #127.0.0.1       localhost
343 #127.0.1.1       $HOSTNAME.example.org $HOSTNAME
344
345 # The following lines are desirable for IPv6 capable hosts
346 #::1     ip6-localhost ip6-loopback $HOSTNAME
347 ::1     ip6-localhost ip6-loopback
348 fe00::0 ip6-localnet
349 ff00::0 ip6-mcastprefix
350 ff02::1 ip6-allnodes
351 ff02::2 ip6-allrouters
352 ff02::3 ip6-allhosts
353 EOF
354   fi
355 }
356 # }}}
357
358 # set up /etc/network/interfaces {{{
359 interfaces() {
360   if ! [ -r /etc/network/interfaces ] || ! grep -q "auto lo" /etc/network/interfaces ; then
361      echo "Setting up /etc/network/interfaces"
362      cat >> /etc/network/interfaces << EOF
363
364 # loopback device:
365 iface lo inet loopback
366 auto lo
367
368 # eth0:
369 # iface eth0 inet dhcp
370 # auto eth0
371
372 EOF
373   fi
374 }
375 # }}}
376
377 # adjust timezone {{{
378 timezone() {
379   if [ -n "$TIMEZONE" ] ; then
380      echo "Adjusting /etc/localtime"
381      ln -sf /usr/share/zoneinfo/$TIMEZONE /etc/localtime
382   fi
383 }
384 # }}}
385
386 # helper function for fstab() {{{
387 createfstab(){
388      echo "Setting up /etc/fstab"
389 if [ -n "$TARGET_UUID" ] ; then
390    echo "/dev/disk/by-uuid/${TARGET_UUID} /  auto    defaults,errors=remount-ro 0   1" > /etc/fstab
391 else
392    echo "${TARGET} /  auto    defaults,errors=remount-ro 0   1" > /etc/fstab
393 fi
394
395 cat >> /etc/fstab << EOF
396 proc           /proc        proc    defaults                      0   0
397 /dev/cdrom     /mnt/cdrom0  iso9660 ro,user,noauto                0   0
398 # some other examples:
399 # /dev/sda2       none         swap    sw,pri=0             0   0
400 # /dev/hda1       /Grml        ext3    dev,suid,user,noauto 0  2
401 # //1.2.3.4/pub   /smb/pub     smbfs   defaults,user,noauto,uid=grml,gid=grml 0 0
402 # linux:/pub      /beer        nfs     defaults             0  0
403 # tmpfs           /tmp         tmpfs   size=300M            0  0
404 # /dev/sda5       none         swap    sw                   0  0
405 EOF
406 }
407 # }}}
408
409 # generate /etc/fstab {{{
410 fstab() {
411   # set up /etc/fstab if file is not present (cdebootstrap)
412   if [ ! -f /etc/fstab  ] ; then
413      createfstab
414   fi
415
416   # set up /etc/fstab if file is UNCONFIGURED (debootstrap)
417   if grep -q UNCONFIGURED /etc/fstab ; then
418      createfstab
419   fi
420 }
421 # }}}
422
423 # set up hostname {{{
424 hostname() {
425   if [ -n "$HOSTNAME" ] ; then
426      echo "Setting hostname to ${HOSTNAME}."
427      echo "$HOSTNAME" > /etc/hostname
428
429      # adjust postfix configuration
430      if [ -r /etc/postfix/main.cf ] ; then
431         # adjust hostname related options:
432         sed -i "s/grml/$HOSTNAME/g" /etc/postfix/main.cf
433
434         # listen on loopback interface only:
435         sed -i "s/^inet_interfaces = .*/inet_interfaces = loopback-only/" /etc/postfix/main.cf
436         grep -q inet_interfaces /etc/postfix/main.cf || echo 'inet_interfaces = loopback-only' >> /etc/postfix/main.cf
437      fi
438   fi
439 }
440 # }}}
441
442 # generate initrd/initramfs {{{
443 initrd() {
444   # assume the first available kernel as our main kernel
445   KERNELIMG=$(ls -1 /boot/vmlinuz-* 2>/dev/null | head -1)
446   if [ -z "$KERNELIMG" ] ; then
447      echo 'No kernel image found, skipping initrd stuff.'>&2
448      return
449   fi
450
451   KERNELVER=${KERNELIMG#/boot/vmlinuz-}
452
453   # generate initrd
454   if [ -n "$INITRD" ] ; then
455      echo "Generating initrd."
456      update-initramfs -c -t -k $KERNELVER
457   fi
458 }
459 # }}}
460
461 # grub configuration/installation {{{
462 grub_install() {
463
464   if [ -z "$GRUB" ] ; then
465     echo "Notice: \$GRUB not defined, will not install grub inside chroot at this stage."
466     return 0
467   fi
468
469   if ! dpkg --list grub-pc 2>/dev/null | grep -q '^ii' ; then
470     echo "Notice: grub option set but no grub-pc package, installing it therefore."
471     DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL grub-pc
472   fi
473
474   if ! [ -x "$(which grub-install)" ] ; then
475      echo "Error: grub-install not available. (Error while installing grub package?)" >&2
476      return 1
477   fi
478
479   if [ -n "$SELECTED_PARTITIONS" ] ; then # using sw-raid
480      for device in $SELECTED_PARTITIONS ; do
481         GRUB="${device%%[0-9]}"
482         echo "Installing grub on ${GRUB}:"
483         grub-install --no-floppy "$GRUB"
484      done
485   else
486      echo "Installing grub on ${GRUB}:"
487      grub-install --no-floppy "$GRUB"
488   fi
489
490   echo "Adjusting grub configuration for use on ${GRUB}."
491
492   # finally install grub
493   if [ -x /usr/sbin/update-grub ] ; then
494      UPDATEGRUB='/usr/sbin/update-grub'
495   elif [ -x /sbin/update-grub ] ; then
496      UPDATEGRUB='/sbin/update-grub'
497   else
498     echo "Error: update-grub not available, can not execute it." >&2
499     return 1
500   fi
501
502   $UPDATEGRUB
503 }
504 # }}}
505
506 # execute all scripts present in /etc/debootstrap/chroot-scripts/ {{{
507 custom_scripts() {
508   [ -d /etc/debootstrap/chroot-scripts/ ] || return 0
509
510   for script in /etc/debootstrap/chroot-scripts/* ; do
511       echo "Executing script $script"
512       $script && echo "done" || echo "failed"
513   done
514 }
515 # }}}
516
517 # make sure we don't have any running processes left {{{
518 services() {
519   for service in ssh mdadm mdadm-raid ; do
520     if [ -x /etc/init.d/"$service" ] ; then
521        /etc/init.d/"$service" stop || true
522     fi
523   done
524 }
525 # }}}
526
527 # unmount /proc and make sure nothing is left {{{
528 finalize() {
529   # make sure we don't leave any sensible data
530   rm -f /etc/debootstrap/variables
531
532   [ -n "$POLICYRCD" ] && rm -f /usr/sbin/policy-rc.d
533
534   umount /proc >/dev/null 2>/dev/null || true
535 }
536 # }}}
537
538 # signal handler {{{
539 signal_handler() {
540   finalize
541   [ -n "$1" ] && EXIT="$1" || EXIT="1"
542   exit "$EXIT"
543 }
544 # }}}
545
546 # set signal handler {{{
547 trap signal_handler HUP INT QUIT TERM
548 # }}}
549
550 # execute the functions {{{
551
552  # always execute install_policy_rcd
553  install_policy_rcd
554
555  for i in chrootmirror grmlrepos kernelimg_conf \
556      kernel packages extrapackages  reconfigure hosts interfaces \
557      timezone fstab hostname initrd grub_install passwords        \
558      custom_scripts upgrade_system remove_apt_cache services \
559      remove_chrootmirror; do
560      if stage $i ; then
561        $i && stage $i done || exit 1
562      fi
563   done
564   # always execute the finalize stage:
565   finalize
566 # }}}
567
568 # finally exit the chroot {{{
569   echo "Finished chroot installation, exiting."
570   exit 0
571 # }}}
572
573 ## END OF FILE #################################################################
574 # vim: ai tw=80 expandtab foldmethod=marker