ea845d142c0c112074d8391d9be4dba9def64944
[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 # Latest change: Fre Nov 03 23:42:36 CET 2006 [mika]
8 ################################################################################
9
10 set -e # exit on any error
11
12 . /etc/debootstrap/config || exit 1
13
14 [ -r /proc/1 ] || mount -t proc   none /proc
15
16 if [ -n "$CHROOTMIRROR" ] ; then
17    echo "deb $CHROOTMIRROR $RELEASE main contrib non-free" > /etc/apt/sources.list
18 fi
19
20 if ! [ -r /etc/kernel-img.conf ] ; then
21    echo "Setting up /etc/kernel-img.conf"
22    cat > /etc/kernel-img.conf << EOF
23 # Kernel Image management overrides
24 # See kernel-img.conf(5) for details
25 do_initrd = Yes
26 do_symlinks = Yes
27 EOF
28 fi
29
30 # create default devices
31 if ! [ -r /dev/hda20 ] ; then
32    echo "Creating generic devices in /dev - this might take a while..."
33    cd /dev && MAKEDEV generic
34 fi
35
36 # install additional packages
37 if [ "$PACKAGES" = 'yes' ] ; then
38    if ! [ -r /etc/debootstrap/packages ] ; then
39      echo "Error: /etc/debootstrap/packages not found, exiting."
40      exit 1
41    else
42      apt-get update
43      apt-get --force-yes -y install $(cat /etc/debootstrap/packages)
44    fi
45 fi
46
47 # sarge specific stuff
48 if [ "$RELEASE" = 'sarge' ] ; then
49    sed -i "s#ROOT=probe#ROOT=$TARGET#" /etc/mkinitrd/mkinitrd.conf
50 fi
51
52 if [ -n "$KERNEL" ] ; then
53    apt-get update
54    if [ "$RELEASE" = 'sarge' ] ; then
55       KERNELPACKAGES="kernel-image-$KERNEL kernel-headers-$KERNEL"
56    else
57       KERNELPACKAGES="linux-image-$KERNEL linux-headers-$KERNEL"
58    fi
59    apt-get --force-yes -y install $KERNELPACKAGES
60 fi
61
62 if [ -n "$RECONFIGURE" ] ; then
63    for package in $RECONFIGURE ; do
64        dpkg --list $package 1>/dev/null 2>/dev/null && dpkg-reconfigure $package || echo "Warning: $package does not exist, can not reconfigure it."
65    done
66 fi
67
68 # set password of user root
69 echo "Activating shadow passwords."
70 shadowconfig on
71 echo "Setting password for user root:"
72 # TODO: typing the wrong password will exit chroot script
73 passwd
74 echo ""
75
76 if ! [ -f /etc/hosts ] ; then
77    echo "Setting up /etc/hosts"
78    echo "127.0.0.1       localhost  $HOSTNAME" > /etc/hosts
79 fi
80
81 if ! [ -f /etc/network/interfaces ] ; then
82    echo "Setting up /etc/network/interfaces"
83    cat >> /etc/network/interfaces << EOF
84 iface lo inet loopback
85 iface eth0 inet dhcp
86 auto lo
87 auto eth0
88 EOF
89 fi
90
91 # adjust timezone
92 if [ -n "$TIMEZONE" ] ; then
93    echo "Adjusting /etc/localtime"
94    ln -sf /usr/share/zoneinfo/$TIMEZONE /etc/localtime
95 fi
96
97 function createfstab(){
98    echo "Setting up /etc/fstab"
99 cat > /etc/fstab << EOF
100 $TARGET      /            auto    defaults,errors=remount-ro 0   1
101 /sys           /sys         sysfs   rw,nosuid,nodev,noexec     0   0
102 proc           /proc        proc    defaults                   0   0
103 /dev/cdrom     /mnt/cdrom0  iso9660 ro,user,noauto             0   0
104 # some other examples:
105 # /dev/sda2       none         swap    sw                   0   0
106 # /dev/hda1       /Grml        ext3    dev,suid,user,noauto 0  2
107 # //1.2.3.4/pub   /smb/pub     smbfs   defaults,user,noauto,uid=grml,gid=grml 0 0
108 # linux:/pub      /beer        nfs     defaults             0  0
109 # tmpfs           /tmp         tmpfs   size=300M            0  0
110 EOF
111 }
112
113 # set up /etc/fstab if file is not present (cdebootstrap)
114 if [ ! -f /etc/fstab  ] ; then
115    createfstab
116 fi
117
118 # set up /etc/fstab if file is UNCONFIGURED (debootstrap)
119 if grep -q UNCONFIGURED /etc/fstab ; then
120    createfstab
121 fi
122
123 # set up hostname
124 if [ -n "$HOSTNAME" ] ; then
125    echo "Setting hostname to ${HOSTNAME}."
126    echo "$HOSTNAME" > /etc/hostname
127 fi
128
129 # assume the first available kernel as our main kernel
130 KERNELIMG=$(ls -1 /boot/vmlinuz-* | head -1)
131 KERNELVER=${KERNELIMG#/boot/vmlinuz-}
132
133 # generate initrd
134 if [ -n "$INITRD" ] ; then
135    if [ "$RELEASE" = 'sarge' ] ; then
136       echo "Release sarge detected, will not create an initrd."
137       return 0
138    fi
139    echo "Generating initrd."
140    update-initramfs -c -t -k $KERNELVER
141    if [ -f "/boot/initrd.img-$KERNELVER" ] ; then
142       GRUBINITRD="initrd          /boot/initrd.img-$KERNELVER"
143       LILOINITRD="        initrd=/boot/initrd.img-$KERNELVER"
144    fi
145 fi
146
147 if [ -n "$GROOT" ] ; then
148    echo "Installing grub"
149
150    # copy stage-files to /boot/grub/
151    [ -d /boot/grub/ ] || mkdir /boot/grub
152    if [ -d /usr/lib/grub/i386-pc/ ] ; then
153       cp /usr/lib/grub/i386-pc/* /boot/grub/
154    else
155       # sarge ships grub files in another directory
156       cp /lib/grub/i386-pc/* /boot/grub/
157    fi
158
159    # finally install grub
160    update-grub -y
161    sed -i "s/groot=.*/groot=(${GROOT})/g" /boot/grub/menu.lst
162    # not sure why savedefault does not work for me; any ideas?
163    sed -i "s/^savedefault.*/# &/g" /boot/grub/menu.lst
164    update-grub -y
165
166    if [ -z "$MBR" ] ; then
167       echo "Notice: \$MBR not set, will not install grub therefor."
168    else
169       cp /proc/mounts /etc/mtab
170       grub-install "$MBR"
171       rm /etc/mtab
172    fi
173 fi
174
175 # make sure we don't have any running processes left
176 [ -x /etc/init.d/ssh ] && /etc/init.d/ssh stop
177
178 # unmount all filesystems in chroot, make sure nothing is left...
179 umount -a    1>/dev/null 2>/dev/null || true
180 umount /proc 1>/dev/null 2>/dev/null || true
181 umount /proc 1>/dev/null 2>/dev/null || true
182 umount -a    1>/dev/null 2>/dev/null || true
183
184 # finally exit the chroot
185 echo "Finished chroot installation, exiting."
186 exit 0
187
188 ## END OF FILE #################################################################