87166bf01d8c0d1e26f7eebb58c14fd0c9e4e02a
[grml-debootstrap.git] / grml-debootstrap
1 #!/bin/sh
2 # Filename:      grml-bootstrap
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 # Latest change: Fre Nov 17 23:00:30 CET 2006 [mika]
8 ################################################################################
9 # http://www.debian.org/releases/stable/i386/apcs04.html.en
10
11 set -e # exit on any error
12
13 . /etc/grml/lsb-functions
14 . /etc/grml/script-functions
15
16 VERSION='0.2'
17
18 case $* in
19    -h*|--h*)
20      einfo "$0 - wrapper around debootstrap for installing plain Debian via grml"
21      einfo "Configure via /etc/debootstrap/config and invoke $0 afterwards."
22      eend 0
23      exit 0
24    ;;
25    -v|--v*)
26      einfo "$0 version $VERSION"
27      einfo "Send bug reports to Michael Prokop <mika@grml.org>."
28      eend 0
29      exit 0
30    ;;
31 esac
32
33 check4progs debootstrap || exit 1
34 check4root || exit 1
35
36 # without config file it won't work
37 if [ -r /etc/debootstrap/config ] ; then
38    . /etc/debootstrap/config
39 else
40    echo "/etc/debootstrap/config could not be read, exiting."
41    exit 1
42 fi
43
44 # make sure at least $TARGET is set [the partition for the new system]
45 if [ -z "$TARGET" ] ; then
46    eerror "Please adjust /etc/debootstrap/config before running ${0}" ; eend 1
47    exit 1
48 fi
49
50 function bailout(){
51   # make sure $TARGET is not mounted when exiting grml-debootstrap
52   if [ -n "$TARGET" ] ; then
53      if grep -q $TARGET /proc/mounts ; then
54         echo "Unmounting $TARGET"
55         umount "$TARGET"
56      fi
57   fi
58   [ -n "$1" ] && EXIT="$1" || EXIT="1"
59   exit "$EXIT"
60 }
61
62 trap bailout 1 2 3 15
63
64 PARTITION=''
65 DIRECTORY=''
66
67 case $TARGET in
68   /dev/*)
69     PARTITION=1
70        ;;
71        *)
72        # assume we are installing into a directory, don't run mkfs and grub related stuff therefore
73     DIRECTORY=1
74     MNTPOINT="$TARGET"
75     MKFS=''
76     TUNE2FS=''
77     GRUB=''
78     GROOT=''
79        ;;
80 esac
81
82 # user should recheck his configuration
83 einfo "$0 - Please recheck configuration before execution:"
84 echo "
85    Target partition: $TARGET
86    Mount-point:      $MNTPOINT
87    Install grub to:  $GROOT / $GRUB  [if empty grub will not be installed]
88
89    Important! Continuing will delete all data from ${TARGET}!
90 "
91 einfon "Is this ok for you? [y/N] "
92
93 read a
94 if ! [ "$a" = 'y' -o "$a" = 'Y' ] ; then
95    eerror "Exiting as requested." ; eend 1
96    exit 1
97 fi
98
99 if [ -n "$MKFS" ] ; then
100    einfo "Running $MKFS on $TARGET"
101    $MKFS $TARGET
102    eend $?
103 fi
104
105 if [ -n "$TUNE2FS" ] ; then
106    einfo "Disabling automatic filesystem check on $TARGET via tune2fs"
107    $TUNE2FS $TARGET
108    eend $?
109 fi
110
111
112 # now mount the new partition or if it's a directory do nothing at all
113 if [ -n "$DIRECTORY" ] ; then
114    einfo "Running grml-debootstrap on a directory, nothing to mount."
115 else
116    if grep -q $TARGET /proc/mounts ; then
117       eerror "$TARGET already mounted, exiting."
118    else
119      [ -n "$MNTPOINT" ] || MNTPOINT='/mnt/test'
120      [ -d "$MNTPOINT" ] || mkdir -p "$MNTPOINT"
121      einfo "Mounting $TARGET to $MNTPOINT"
122      mount -o rw,suid,dev $TARGET $MNTPOINT
123      eend $?
124    fi
125 fi
126
127 # get main packages from a debian-mirror
128 if [ -n "$ARCH" ] ; then
129    ARCHCMD="--arch $ARCH"
130    ARCHINFO=" (${ARCH})"
131 fi
132 einfo "Running $DEBOOTSTRAP for release ${RELEASE}${ARCHINFO} using mirror $MIRROR"
133 $DEBOOTSTRAP $ARCHCMD $RELEASE $MNTPOINT $MIRROR
134 eend $?
135
136 einfo "Preparing chroot system"
137   cp $CONFFILES/chroot-script $MNTPOINT/bin/chroot-script
138   chmod 755 $MNTPOINT/bin/chroot-script
139   mkdir $MNTPOINT/etc/debootstrap/
140
141   # make sure we have our files for later use via chroot-script
142   cp /etc/debootstrap/config $MNTPOINT/etc/debootstrap/
143   cp /etc/debootstrap/packages $MNTPOINT/etc/debootstrap/packages
144
145   # make sure we can access network [relevant for cdebootstrap]
146   [ -f "$MNTPOINT/etc/resolv.conf" ] || cp /etc/resolv.conf $MNTPOINT/etc/resolv.conf
147
148   # setup default locales
149   [ -n "$LOCALES" ] && cp /etc/debootstrap/locale.gen  $MNTPOINT/etc/locale.gen
150
151   # copy any existing existing files to chroot
152   [ -d /etc/debootstrap/boot  ] && cp -a /etc/debootstrap/boot/*  $MNTPOINT/boot/
153   [ -d /etc/debootstrap/etc   ] && cp -a /etc/debootstrap/etc/*   $MNTPOINT/etc/
154   [ -d /etc/debootstrap/share ] && cp -a /etc/debootstrap/share/* $MNTPOINT/share/
155   [ -d /etc/debootstrap/usr   ] && cp -a /etc/debootstrap/usr/*   $MNTPOINT/usr/
156   [ -d /etc/debootstrap/var   ] && cp -a /etc/debootstrap/var/*   $MNTPOINT/var/
157 eend 0
158
159 einfo "Executing chroot-script now"
160 chroot $MNTPOINT /bin/chroot-script
161 eend $?
162
163 # einfo "Removing chroot-script"
164 # rm -f  $MNTPOINT/bin/chroot-script
165 # rm -rf $MNTPOINT/etc/debootstrap/
166 # eend $?
167
168 if [ -z "$GRUB" -o -z "$GROOT" ] ; then
169    echo "Notice: \$GRUB or \$GROOT not defined, will not install grub therefor."
170 else
171    einfo "Installing grub on ${GRUB}:"
172    grub-install --root-directory="$MNTPOINT" "(${GRUB})"
173    eend $?
174 fi
175
176 if [ -n "$PARTITION" ] ; then
177    einfo "Unmount $MNTPOINT"
178    umount $MNTPOINT
179    eend $?
180 fi
181
182 if [ "$FSCK" = 'yes' ] ; then
183    [ -n "$FSCKTOOL" ] || FSCKTOOL="fsck.${MKFS#mkfs.}"
184    einfo "Checking filesystem on $TARGET using $FSCKTOOL"
185    $FSCKTOOL $TARGET
186    eend $?
187 fi
188
189 einfo "Finished execution of $0 - enjoy your Debian system." ; eend 0
190
191 ## END OF FILE #################################################################