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