4a291884e9380e23f061a439d6a3c73833339792
[build.git] / mkfedora
1 #!/bin/bash
2 #
3 # Builds a Fedora reference image. Requires the build server to
4 # host a local yum repository in one of:
5 #
6 # /usr/share/mirrors/fedora
7 # /var/www/html/mirrors/fedora
8 #
9 # Otherwise, tries using CoBlitz:
10 #
11 # http://coblitz.planet-lab.org/pub/fedora
12 #
13 # Mark Huang <mlhuang@cs.princeton.edu>
14 # Copyright (C) 2004-2006 The Trustees of Princeton University
15 #
16 # $Id$
17 #
18
19 export PATH=/sbin:/bin:/usr/sbin:/usr/bin
20
21 # Verbosity
22 verbose=0
23
24 # Default yum repositories to try
25 mirrors=(
26 file:///data/fedora
27 http://localhost/fedora
28 http://build.planet-lab.org/fedora
29 http://coblitz.codeen.org/coblitz.planet-lab.org/pub/fedora
30 ftp://mirror.cs.princeton.edu/pub/mirrors/fedora
31 ftp://mirror.stanford.edu/pub/mirrors/fedora
32 ftp://rpmfind.net/linux/fedora
33 )
34
35 # Release and architecture to install
36 releasever=4
37 basearch=i386
38
39 # Yum groups to install
40 groups=()
41
42 # Packages to install
43 packages=()
44
45 # Packages to exclude
46 exclude=()
47
48 # Exclude kernel* (and related) packages from all repositories except bootstrap
49 exclude_kernel=
50
51 # PlanetLab development environment
52 if [ -f /etc/planetlab/plc_config ] ; then
53     . /etc/planetlab/plc_config
54     if [ -n "$PLC_DEVEL_FEDORA_URL" ] ; then
55         mirrors=($PLC_DEVEL_FEDORA_URL)
56     fi
57 fi
58
59 usage()
60 {
61     echo "Usage: mkfedora [OPTION]... [basedir]"
62     echo "      -l url          Fedora mirror location. Defaults to try:"
63     for mirror in "${mirrors[@]}" ; do
64         echo "                  $mirror"
65     done
66     echo "      -r release      Fedora release number (default: $releasever)"
67     echo "      -a arch         Fedora architecture (default: $basearch)"
68     echo "      -g group1 -g group2 ..."
69     echo "                      Yumgroups to install (default: none)"
70     echo "      -p package1 -p package2 ..."
71     echo "                      Additional packages to install (default: none)"
72     echo "      -x package1 -x package2 ..."
73     echo "                      Packages to exclude (default: none)"
74     echo "      -k              Exclude kernel* packages from all repositories except bootstrap"
75     echo "      -v              Be verbose"
76     echo "      -h              This message"
77     exit 1
78 }
79
80 # Get options
81 while getopts "l:r:a:g:p:x:kvh" opt ; do
82     case $opt in
83         l)
84             if echo $OPTARG | grep -q -i '^\(file\|http[s]*\)://' ; then
85                 mirrors=($OPTARG)
86             else
87                 mirrors=(file://$OPTARG)
88             fi
89             ;;
90         r)
91             releasever=$OPTARG
92             ;;
93         a)
94             basearch=$OPTARG
95             ;;
96         g)
97             groups[${#groups[*]}]="$OPTARG"
98             ;;
99         p)
100             packages[${#packages[*]}]="$OPTARG"
101             ;;
102         x)
103             exclude[${#exclude[*]}]="$OPTARG"
104             ;;
105         k)
106             exclude_kernel="exclude=kernel* ulogd iptables"
107             ;;
108         v)
109             verbose=1
110             set -x
111             ;;
112         h|*)
113             usage
114             ;;
115     esac
116 done
117
118 shift $(($OPTIND - 1))
119 if [ ! -d "$1" ] ; then
120     usage
121 fi
122
123 vroot=$(cd $1 && pwd -P)
124
125 if [ $UID -ne 0 ] ; then
126     echo "Error: You must run this script as root."
127     exit 1
128 fi
129
130 fetch ()
131 {
132     curl --fail --silent --max-time 60 "$1"
133 }
134
135 # hard to find two mirrors with a similar layout
136 # set list of attempted locations according to releasever
137 if [ $releasever -ge 7 ] ; then
138     attempts="
139 $releasever/Everything/$basearch/os
140 core/$releasever/Everything/$basearch/os \
141 linux/core/$releasever/$basearch/os
142 "
143 else
144     attempts="
145 linux/core/$releasever/$basearch/os 
146 core/$releasever/$basearch/os 
147 $releasever/$basearch/os
148 "
149 fi
150
151 for mirror in "${mirrors[@]}" ; do
152     for attempt in $attempts; do 
153         baseurl=$mirror/$attempt
154         if fetch $baseurl/repodata/repomd.xml >/dev/null ; then
155             break
156         fi
157         unset baseurl
158     done
159     if [ -n "$baseurl" ] ; then
160         break
161     fi
162     unset baseurl
163 done
164
165 if [ -z "$baseurl" ] ; then
166     echo "Error: $releasever/$basearch/os/repodata/repomd.xml"
167     echo "       could not be found in any of the following locations:"
168     echo
169     for mirror in ${mirrors[@]} ; do
170         for attempt in $attempts ; do
171             echo $mirror/$attempt
172         done
173     done
174     echo
175     usage
176 fi
177
178 exec 3>&1
179 exec 4>&2
180 if [ $verbose -eq 0 ] ; then
181     exec 1>/dev/null
182     exec 2>/dev/null
183 fi
184
185 # Do not tolerate errors
186 set -e
187
188 # Mount /dev/pts and /dev/shm in reference image
189 mount -t devpts none $vroot/dev/pts
190 mount -t tmpfs none $vroot/dev/shm
191
192 # make rpms ignore installing stuff to /proc
193 mkdir -p $vroot/etc/rpm
194 # Because of https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=52725
195 # you have to use at least one language beside 'C'
196 echo "%_install_langs         C:de:en:es:fr" > $vroot/etc/rpm/macros
197 echo "%_netsharedpath /proc" >> $vroot/etc/rpm/macros
198 # Mount /proc in reference image
199 mkdir -p $vroot/proc
200 mount -t proc none $vroot/proc
201
202 cleanup ()
203 {
204     umount -l $vroot/proc
205     umount -l $vroot/dev/shm
206     umount -l $vroot/dev/pts
207 }
208
209 # Clean up before exiting if anything goes wrong
210 trap "cleanup" ERR INT
211
212 # Create a /var/lib dirs for yum & rpm
213 mkdir -p $vroot/var/lib/yum
214 mkdir -p $vroot/var/lib/rpm
215 mkdir -p $vroot/usr/share/info
216
217 # Create a dummy /etc/fstab in reference image
218 mkdir -p $vroot/etc
219 cat >$vroot/etc/fstab <<EOF
220 # This fake fstab exists only to please df and linuxconf.
221 /dev/hdv1       /       ext2    defaults        1 1
222 EOF
223 cp $vroot/etc/fstab $vroot/etc/mtab
224
225 # Prevent all locales from being installed in reference image
226 mkdir -p $vroot/etc/rpm
227 cat >$vroot/etc/rpm/macros <<EOF
228 %_install_langs en_US:en
229 %_excludedocs 1
230 %__file_context_path /dev/null
231 EOF
232
233 # Necessary for some scripts
234 mkdir -p $vroot/etc/sysconfig
235 echo "NETWORKING=yes" > $vroot/etc/sysconfig/network
236
237 # Trick rpm and yum, who read the real root /etc/rpm/macros file
238 # rather than the one installed in the reference image, despite what
239 # you might expect the --root and --installroot options to mean. Both
240 # programs always read $HOME/.rpmmacros.
241 export HOME=$vroot/tmp
242 mkdir -p $vroot/tmp
243 cp $vroot/etc/rpm/macros $vroot/tmp/.rpmmacros
244
245 # Initialize RPM database in reference image
246 mkdir -p $vroot/var/lib/rpm
247 rpm --root $vroot --initdb
248 rpm --root $vroot --import $baseurl/RPM-GPG-KEY-fedora
249
250 # Initialize yum in reference image
251 mkdir -p $vroot/var/cache/yum $vroot/var/log
252 if [ $releasever -lt 7 ] ; then
253         corename="Core "
254 else
255         corename=""
256 fi
257
258 cat >$vroot/etc/yum.conf <<EOF
259 [main]
260 cachedir=/var/cache/yum
261 debuglevel=2
262 logfile=/var/log/yum.log
263 pkgpolicy=newest
264 distroverpkg=redhat-release
265 tolerant=1
266 exactarch=1
267 retries=20
268 obsoletes=1
269 gpgcheck=0
270 # Prevent yum-2.4 from loading additional repository definitions
271 # (e.g., from /etc/yum.repos.d/)
272 reposdir=/dev/null
273
274 [base]
275 name=Fedora ${corename}${releasever} - $basearch - base
276 baseurl=$baseurl/
277 $exclude_kernel
278 EOF
279
280 for optional in updates extras ; do
281     for optionalurl in \
282         $mirror/linux/core/$optional/$releasever/$basearch \
283         $mirror/core/$optional/$releasever/$basearch \
284         $mirror/linux/$optional/$releasever/$basearch \
285         $mirror/$optional/$releasever/$basearch ; do
286         if fetch $optionalurl/repodata/repomd.xml ; then
287             cat >>$vroot/etc/yum.conf <<EOF
288
289 [$(basename $optional)]
290 name=Fedora ${corename}${releasever} - $basearch - $(basename $optional)
291 baseurl=$optionalurl/
292 $exclude_kernel
293 EOF
294             break
295         fi
296     done
297 done
298
299 # If we are being built as part of an automated RPM build, solve the
300 # bootstrap problem by including any just built packages in the yum
301 # configuration. This cooperates with the PlanetLab build system.
302 if [ -n "$RPM_BUILD_DIR" ] ; then
303     RPM_RPMS_DIR=$(cd $(dirname $RPM_BUILD_DIR)/RPMS && pwd -P)
304     # yum-2.0.x
305     if [ -x /usr/bin/yum-arch ] ; then
306         yum-arch -q $RPM_RPMS_DIR
307     fi
308     # yum-2.4.x
309     if [ -x /usr/bin/createrepo ] ; then
310         if [ -f $RPM_RPMS_DIR/yumgroups.xml ] ; then
311             groupfile="-g yumgroups.xml"
312         fi
313         createrepo --quiet $groupfile $RPM_RPMS_DIR
314     fi
315     # If run under sudo, allow user to delete the headers/ and
316     # repodata/ directories.
317     if [ -n "$SUDO_USER" ] ; then
318         chown -R $SUDO_USER $RPM_RPMS_DIR
319     fi
320     cat >>$vroot/etc/yum.conf <<EOF
321
322 [bootstrap]
323 name=Bootstrap - $basearch - $RPM_RPMS_DIR/
324 baseurl=file://$RPM_RPMS_DIR/
325 EOF
326 fi
327
328 excludes=
329 for package in "${exclude[@]}" ; do
330     excludes="$excludes --exclude=$package"
331 done
332
333 # glibc must be specified explicitly for the correct arch to be
334 # chosen.
335 echo "* Installing glibc" >&3
336 yum -c $vroot/etc/yum.conf --installroot=$vroot -y $excludes install glibc
337
338 # Go, baby, go
339 if [ ${#packages[*]} -gt 0 ] ; then
340    echo "* Installing optional packages" "${packages[@]}" >&3
341    yum -c $vroot/etc/yum.conf --installroot=$vroot -y $excludes \
342           install "${packages[@]}"
343    if ! rpm --root $vroot -q "${packages[@]}" >/dev/null ; then
344        echo "* Warning: Missing packages"
345        rpm --root $vroot -q "${packages[@]}" | grep "not installed"
346    fi
347 fi
348
349 if [ ${#groups[*]} -gt 0 ] ; then
350    ## call yum sequentially to get finer-grained info on dependencies
351    for grp in "${groups[@]}" ; do
352       echo "* Installing optional group $grp" >&3
353       yum -c $vroot/etc/yum.conf --installroot=$vroot -y $excludes \
354         groupinstall "$grp"
355    done
356 fi
357
358 # FC2 dev %preinstall checks /proc/mounts to make sure that /dev is
359 # not currently mounted as devfs. If it thinks it is, it will refuse
360 # to install the package. On a modern system running udev that mounts
361 # /dev as tmpfs, this check fails. Since we are installing into a
362 # chroot, whether /dev is mounted on the host system or not doesn't
363 # matter. If dev was explicitly mentioned in the packages list, force
364 # its installation.
365 if [ "$releasever" = "2" ] ; then
366     for package in "${packages[@]}" ; do
367         if [ "$package" = "dev" ] && ! rpm --root $vroot -q dev >/dev/null 2>&1 ; then
368             rpm --root $vroot -Uvh --noscripts $baseurl/Fedora/RPMS/dev-3.3.13-1.i386.rpm
369             break
370         fi
371     done
372 fi
373
374 # Clean yum cache
375 echo "* Cleaning up" >&3
376 yum -c $vroot/etc/yum.conf --installroot=$vroot -y \
377     clean all
378
379 # Clean RPM state
380 rm -f $vroot/var/lib/rpm/__db*
381
382 # Set time zone to UTC
383 if [ -f $vroot/usr/share/zoneinfo/UTC -a -f $vroot/etc/localtime ] ; then
384     rm -f $vroot/etc/localtime
385     ln -s /usr/share/zoneinfo/UTC $vroot/etc/localtime
386 fi
387
388
389 # remove trap handler, as we are about to call it directly.
390 trap - ERR INT
391
392 # Clean up
393 cleanup
394
395 exit 0