temporary : mount/umount /proc : enabled on fc4 as it used to work before - disabled...
[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
199 # xxx fixme : do this mount/unmount thing for fc4 only
200 if [ "$releasever" -lt 6 ] ; then
201    # Mount /proc in reference image
202     mkdir -p $vroot/proc
203     mount -t proc none $vroot/proc
204 fi
205
206 cleanup ()
207 {
208     # xxx fixme : do this mount/unmount thing for fc4 only
209     if [ "$releasever" -lt 6 ] ; then
210         umount -l $vroot/proc
211     fi
212     umount -l $vroot/dev/shm
213     umount -l $vroot/dev/pts
214 }
215
216 # Clean up before exiting if anything goes wrong
217 trap "cleanup" ERR INT
218
219 # Create a /var/lib dirs for yum & rpm
220 mkdir -p $vroot/var/lib/yum
221 mkdir -p $vroot/var/lib/rpm
222 mkdir -p $vroot/usr/share/info
223
224 # Create a dummy /etc/fstab in reference image
225 mkdir -p $vroot/etc
226 cat >$vroot/etc/fstab <<EOF
227 # This fake fstab exists only to please df and linuxconf.
228 /dev/hdv1       /       ext2    defaults        1 1
229 EOF
230 cp $vroot/etc/fstab $vroot/etc/mtab
231
232 # Prevent all locales from being installed in reference image
233 mkdir -p $vroot/etc/rpm
234 cat >$vroot/etc/rpm/macros <<EOF
235 %_install_langs en_US:en
236 %_excludedocs 1
237 %__file_context_path /dev/null
238 EOF
239
240 # Necessary for some scripts
241 mkdir -p $vroot/etc/sysconfig
242 echo "NETWORKING=yes" > $vroot/etc/sysconfig/network
243
244 # Trick rpm and yum, who read the real root /etc/rpm/macros file
245 # rather than the one installed in the reference image, despite what
246 # you might expect the --root and --installroot options to mean. Both
247 # programs always read $HOME/.rpmmacros.
248 export HOME=$vroot/tmp
249 mkdir -p $vroot/tmp
250 cp $vroot/etc/rpm/macros $vroot/tmp/.rpmmacros
251
252 # Initialize RPM database in reference image
253 mkdir -p $vroot/var/lib/rpm
254 rpm --root $vroot --initdb
255 rpm --root $vroot --import $baseurl/RPM-GPG-KEY-fedora
256
257 # Initialize yum in reference image
258 mkdir -p $vroot/var/cache/yum $vroot/var/log
259 if [ $releasever -lt 7 ] ; then
260         corename="Core "
261 else
262         corename=""
263 fi
264
265 cat >$vroot/etc/yum.conf <<EOF
266 [main]
267 cachedir=/var/cache/yum
268 debuglevel=2
269 logfile=/var/log/yum.log
270 pkgpolicy=newest
271 distroverpkg=redhat-release
272 tolerant=1
273 exactarch=1
274 retries=20
275 obsoletes=1
276 gpgcheck=0
277 # Prevent yum-2.4 from loading additional repository definitions
278 # (e.g., from /etc/yum.repos.d/)
279 reposdir=/dev/null
280
281 [base]
282 name=Fedora ${corename}${releasever} - $basearch - base
283 baseurl=$baseurl/
284 $exclude_kernel
285 EOF
286
287 for optional in updates extras ; do
288     for optionalurl in \
289         $mirror/linux/core/$optional/$releasever/$basearch \
290         $mirror/core/$optional/$releasever/$basearch \
291         $mirror/linux/$optional/$releasever/$basearch \
292         $mirror/$optional/$releasever/$basearch ; do
293         if fetch $optionalurl/repodata/repomd.xml ; then
294             cat >>$vroot/etc/yum.conf <<EOF
295
296 [$(basename $optional)]
297 name=Fedora ${corename}${releasever} - $basearch - $(basename $optional)
298 baseurl=$optionalurl/
299 $exclude_kernel
300 EOF
301             break
302         fi
303     done
304 done
305
306 # If we are being built as part of an automated RPM build, solve the
307 # bootstrap problem by including any just built packages in the yum
308 # configuration. This cooperates with the PlanetLab build system.
309 if [ -n "$RPM_BUILD_DIR" ] ; then
310     RPM_RPMS_DIR=$(cd $(dirname $RPM_BUILD_DIR)/RPMS && pwd -P)
311     # yum-2.0.x
312     if [ -x /usr/bin/yum-arch ] ; then
313         yum-arch -q $RPM_RPMS_DIR
314     fi
315     # yum-2.4.x
316     if [ -x /usr/bin/createrepo ] ; then
317         if [ -f $RPM_RPMS_DIR/yumgroups.xml ] ; then
318             groupfile="-g yumgroups.xml"
319         fi
320         createrepo --quiet $groupfile $RPM_RPMS_DIR
321     fi
322     # If run under sudo, allow user to delete the headers/ and
323     # repodata/ directories.
324     if [ -n "$SUDO_USER" ] ; then
325         chown -R $SUDO_USER $RPM_RPMS_DIR
326     fi
327     cat >>$vroot/etc/yum.conf <<EOF
328
329 [bootstrap]
330 name=Bootstrap - $basearch - $RPM_RPMS_DIR/
331 baseurl=file://$RPM_RPMS_DIR/
332 EOF
333 fi
334
335 excludes=
336 for package in "${exclude[@]}" ; do
337     excludes="$excludes --exclude=$package"
338 done
339
340 # glibc must be specified explicitly for the correct arch to be
341 # chosen.
342 echo "* Installing glibc" >&3
343 yum -c $vroot/etc/yum.conf --installroot=$vroot -y $excludes install glibc
344
345 # Go, baby, go
346 if [ ${#packages[*]} -gt 0 ] ; then
347    echo "* Installing optional packages" "${packages[@]}" >&3
348    yum -c $vroot/etc/yum.conf --installroot=$vroot -y $excludes \
349           install "${packages[@]}"
350    if ! rpm --root $vroot -q "${packages[@]}" >/dev/null ; then
351        echo "* Warning: Missing packages"
352        rpm --root $vroot -q "${packages[@]}" | grep "not installed"
353    fi
354 fi
355
356 if [ ${#groups[*]} -gt 0 ] ; then
357    ## call yum sequentially to get finer-grained info on dependencies
358    for grp in "${groups[@]}" ; do
359       echo "* Installing optional group $grp" >&3
360       yum -c $vroot/etc/yum.conf --installroot=$vroot -y $excludes \
361         groupinstall "$grp"
362    done
363 fi
364
365 # FC2 dev %preinstall checks /proc/mounts to make sure that /dev is
366 # not currently mounted as devfs. If it thinks it is, it will refuse
367 # to install the package. On a modern system running udev that mounts
368 # /dev as tmpfs, this check fails. Since we are installing into a
369 # chroot, whether /dev is mounted on the host system or not doesn't
370 # matter. If dev was explicitly mentioned in the packages list, force
371 # its installation.
372 if [ "$releasever" = "2" ] ; then
373     for package in "${packages[@]}" ; do
374         if [ "$package" = "dev" ] && ! rpm --root $vroot -q dev >/dev/null 2>&1 ; then
375             rpm --root $vroot -Uvh --noscripts $baseurl/Fedora/RPMS/dev-3.3.13-1.i386.rpm
376             break
377         fi
378     done
379 fi
380
381 # Clean yum cache
382 echo "* Cleaning up" >&3
383 yum -c $vroot/etc/yum.conf --installroot=$vroot -y \
384     clean all
385
386 # Clean RPM state
387 rm -f $vroot/var/lib/rpm/__db*
388
389 # Set time zone to UTC
390 if [ -f $vroot/usr/share/zoneinfo/UTC -a -f $vroot/etc/localtime ] ; then
391     rm -f $vroot/etc/localtime
392     ln -s /usr/share/zoneinfo/UTC $vroot/etc/localtime
393 fi
394
395
396 # remove trap handler, as we are about to call it directly.
397 trap - ERR INT
398
399 # Clean up
400 cleanup
401
402 exit 0