Support setting variables inside chroot system via /etc/debootstrap/variables
[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: Don Apr 12 11:55:21 CEST 2007 [mika]
8 ################################################################################
9 # http://www.debian.org/releases/stable/i386/index.html.en
10
11 set -e # exit on any error
12
13 VERSION='0.6'
14
15 # source core functions {{{
16 . /etc/grml/lsb-functions
17 . /etc/grml/script-functions
18 # }}}
19
20 # make sure we have what we need {{{
21 check4progs debootstrap || exit 1
22 check4root || exit 1
23 # }}}
24
25 # cmdline handling {{{
26 case $* in
27    -h*|--h*)
28      einfo "$0 - wrapper around debootstrap for installing plain Debian via grml"
29      einfo "Adjust /etc/debootstrap/config and invoke $0 afterwards."
30      eend 0
31      exit 0
32    ;;
33    -v|--v*)
34      einfo "$0 version $VERSION"
35      einfo "Send bug reports to Michael Prokop <mika@grml.org>."
36      eend 0
37      exit 0
38    ;;
39 esac
40 # }}}
41
42 # without config file it won't work {{{
43 if [ -r /etc/debootstrap/config ] ; then
44    . /etc/debootstrap/config
45 else
46    eerror "/etc/debootstrap/config could not be read, exiting." ; eend 1
47    exit 1
48 fi
49 # }}}
50
51 # set/check variables {{{
52
53 # inside the chroot system the locales might not be available, so use minimum:
54 export LANG=C
55 export LC_ALL=C
56
57 if [ -z "$STAGES" ] ; then
58    STAGES='/etc/debootstrap/stages'
59    [ -d "$STAGES" ] || mkdir -p "$STAGES"
60 fi
61
62 if [ -r $STAGES/grml-debootstrap ] ; then
63    if grep -q done $STAGES/grml-debootstrap ; then
64       eerror "Error: grml-debootstrap has been executed already, won't continue therefore."
65       eerror "If you want to re-execute grml-debootstrap just manually remove ${STAGES}" ; eend 1
66    fi
67 fi
68
69 PARTITION=''
70 DIRECTORY=''
71
72 case $TARGET in
73   /dev/*)
74     PARTITION=1
75     ;;
76   *)
77     # assume we are installing into a directory, don't run mkfs and grub related stuff therefore
78     DIRECTORY=1
79     MNTPOINT="$TARGET"
80     MKFS=''
81     TUNE2FS=''
82     FSCK=''
83     GRUB=''
84     GROOT=''
85     ;;
86 esac
87
88 if [ -n "$ARCH" ] ; then
89    ARCHCMD="--arch $ARCH"
90    ARCHINFO=" (${ARCH})"
91 else
92    ARCH="$(dpkg --print-architecture)"
93    ARCHCMD="--arch $ARCH"
94    ARCHINFO=" (${ARCH})"
95 fi
96
97 # provide variables to chroot system
98 echo "
99 ARCH=$ARCH
100 " > /etc/debootstrap/variables
101
102 # make sure at least $TARGET is set [the partition for the new system]
103 if [ -z "$TARGET" ] ; then
104    eerror "Please adjust /etc/debootstrap/config before running ${0}" ; eend 1
105    exit 1
106 fi
107 # }}}
108
109 # helper functions {{{
110 # we want to exit smoothly and clean:
111 bailout(){
112   # make sure $TARGET is not mounted when exiting grml-debootstrap
113   if [ -n "$TARGET" ] ; then
114      if grep -q $TARGET /proc/mounts ; then
115         # make sure nothing is left inside chroot so we can unmount it
116         [ -x "$TARGET"/etc/init.d/ssh   ] && "$TARGET"/etc/init.d/ssh stop
117         [ -x "$TARGET"/etc/init.d/mdadm ] && "$TARGET"/etc/init.d/mdadm stop
118         chroot "$TARGET" umount /sys  1>/dev/null 2>&1
119         chroot "$TARGET" umount /proc 1>/dev/null 2>&1
120         echo "Unmounting $TARGET"
121         umount "$TARGET"
122      fi
123   fi
124   [ -n "$1" ] && EXIT="$1" || EXIT="1"
125   exit "$EXIT"
126 }
127 trap bailout 1 2 3 15
128
129 # we want to execute all the functions only once, simple check for it:
130 stage() {
131   if grep -q done "$STAGES/$1" 2>/dev/null ; then
132      ewarn "Notice: stage $1 has been executed already, skipping execution therefore." ; eend 0
133      return 1
134   else
135      echo "$2" > "$STAGES/$1"
136      return 0
137   fi
138 }
139 # }}}
140
141 # user should recheck his configuration {{{
142 einfo "$0 - Please recheck configuration before execution:"
143 echo "
144    Target:           $TARGET"
145    case "$MNTPOINT" in "$TARGET") ;; *) echo "   Mount-point:      $MNTPOINT" ;; esac
146    [ -n "$GRUB" ] && echo "   Install grub to:  $GROOT / $GRUB"
147    case "$MNTPOINT" in "$TARGET") ;; *) echo "  Important! Continuing will delete all data from ${TARGET}!" ;; esac
148    echo
149 einfon "Is this ok for you? [y/N] "
150
151 read a
152 if ! [ "$a" = 'y' -o "$a" = 'Y' ] ; then
153    eerror "Exiting as requested." ; eend 1
154    exit 1
155 fi
156 # }}}
157
158 # create filesystem {{{
159 mkfs() {
160   if [ -n "$MKFS" ] ; then
161      einfo "Running $MKFS on $TARGET"
162      $MKFS $TARGET
163      eend $?
164   fi
165 }
166 # }}}
167
168 # modify filesystem settings {{{
169 tunefs() {
170   if [ -n "$TUNE2FS" ] ; then
171      einfo "Disabling automatic filesystem check on $TARGET via tune2fs"
172      $TUNE2FS $TARGET
173      eend $?
174   fi
175 }
176 # }}}
177
178 # mount the new partition or if it's a directory do nothing at all {{{
179 mount_target() {
180   if [ -n "$DIRECTORY" ] ; then
181      einfo "Running grml-debootstrap on a directory, nothing to mount."
182   else
183      if grep -q $TARGET /proc/mounts ; then
184         eerror "$TARGET already mounted, exiting."
185      else
186        [ -n "$MNTPOINT" ] || MNTPOINT='/mnt/test'
187        [ -d "$MNTPOINT" ] || mkdir -p "$MNTPOINT"
188        einfo "Mounting $TARGET to $MNTPOINT"
189        mount -o rw,suid,dev $TARGET $MNTPOINT
190        eend $?
191      fi
192   fi
193 }
194 # }}}
195
196 # install main chroot {{{
197 debootstrap_system() {
198   einfo "Running $DEBOOTSTRAP for release ${RELEASE}${ARCHINFO} using mirror $MIRROR"
199   $DEBOOTSTRAP $ARCHCMD $RELEASE $MNTPOINT $MIRROR
200   eend $?
201 }
202 # }}}
203
204 # prepare chroot via chroot-script {{{
205 preparechroot() {
206   einfo "Preparing chroot system"
207   cp $CONFFILES/chroot-script $MNTPOINT/bin/chroot-script
208   chmod 755 $MNTPOINT/bin/chroot-script
209   mkdir $MNTPOINT/etc/debootstrap/
210
211   # make sure we have our files for later use via chroot-script
212   cp /etc/debootstrap/config    $MNTPOINT/etc/debootstrap/
213   cp /etc/debootstrap/packages  $MNTPOINT/etc/debootstrap/packages
214   cp /etc/debootstrap/variables $MNTPOINT/etc/debootstrap/variables
215
216   # make sure we can access network [relevant for cdebootstrap]
217   [ -f "$MNTPOINT/etc/resolv.conf" ] || cp /etc/resolv.conf $MNTPOINT/etc/resolv.conf
218
219   # setup default locales
220   [ -n "$LOCALES" ] && cp /etc/debootstrap/locale.gen  $MNTPOINT/etc/locale.gen
221
222   # copy any existing existing files to chroot
223   [ -d /etc/debootstrap/boot  ] && cp -a /etc/debootstrap/boot/*  $MNTPOINT/boot/
224   [ -d /etc/debootstrap/etc   ] && cp -a /etc/debootstrap/etc/*   $MNTPOINT/etc/
225   [ -d /etc/debootstrap/share ] && cp -a /etc/debootstrap/share/* $MNTPOINT/share/
226   [ -d /etc/debootstrap/usr   ] && cp -a /etc/debootstrap/usr/*   $MNTPOINT/usr/
227   [ -d /etc/debootstrap/var   ] && cp -a /etc/debootstrap/var/*   $MNTPOINT/var/
228   eend 0
229 }
230 # }}}
231
232 # execute chroot-script {{{
233 chrootscript() {
234   einfo "Executing chroot-script now"
235   chroot "$MNTPOINT" /bin/chroot-script
236   eend $?
237 }
238 # }}}
239
240 # install booloader grub {{{
241 grub_install() {
242   if [ -z "$GRUB" -o -z "$GROOT" ] ; then
243      echo "Notice: \$GRUB or \$GROOT not defined, will not install grub therefor."
244   else
245      einfo "Installing grub on ${GRUB}:"
246      grub-install --root-directory="$MNTPOINT" "(${GRUB})"
247      eend $?
248   fi
249 }
250 # }}}
251
252 # unmount $MNTPOINRT {{{
253 umount_chroot() {
254   if [ -n "$PARTITION" ] ; then
255      einfo "Unmount $MNTPOINT"
256      umount $MNTPOINT
257      eend $?
258   fi
259 }
260 # }}}
261
262 # execute filesystem check {{{
263 fscktool() {
264   if [ "$FSCK" = 'yes' ] ; then
265      [ -n "$FSCKTOOL" ] || FSCKTOOL="fsck.${MKFS#mkfs.}"
266      einfo "Checking filesystem on $TARGET using $FSCKTOOL"
267      $FSCKTOOL $TARGET
268      eend $?
269   fi
270 }
271 # }}}
272
273 # now execute all the functions {{{
274   stage mkfs               && mkfs               && stage mkfs done               || bailout
275   stage tunefs             && tunefs             && stage tunefs done             || bailout
276   stage mount_target       && mount_target       && stage mount_target done       || bailout
277   stage debootstrap_system && debootstrap_system && stage debootstrap_system done || bailout
278   stage preparechroot      && preparechroot      && stage preparechroot done      || bailout
279   stage chrootscript       && chrootscript       && stage chrootscript done       || bailout
280   stage grub_install       && grub_install       && stage grub_install done       || bailout
281   stage umount_chroot      && umount_chroot      && stage umount_chroot done      || bailout
282   stage fscktool           && fscktool           && stage fscktool done           || bailout
283 # }}}
284
285 # stages {{{
286   echo done > $STAGES/grml-debootstrap
287 # }}}
288
289   einfo "Finished execution of $0 - enjoy your Debian system." ; eend 0
290
291 ## END OF FILE #################################################################
292 # vim: ai tw=100 expandtab foldmethod=marker