add support for DEPENDDEVELRPMS
[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 echo "* Entering mkfedora " "$@"
22
23 # Verbosity
24 verbose=0
25
26 # Default yum repositories to try
27 mirrors=(
28 file:///data/fedora
29 http://localhost/fedora
30 http://build.planet-lab.org/fedora
31 http://coblitz.codeen.org/coblitz.planet-lab.org/pub/fedora
32 ftp://mirror.cs.princeton.edu/pub/mirrors/fedora
33 ftp://mirror.stanford.edu/pub/mirrors/fedora
34 ftp://rpmfind.net/linux/fedora
35 )
36
37 # Release and architecture to install
38 releasever=4
39 basearch=i386
40
41 # Yum groups to install
42 groups=()
43
44 # Packages to install
45 packages=()
46
47 # Packages to exclude
48 exclude=()
49
50 # Exclude kernel* (and related) packages from all repositories except bootstrap
51 exclude_kernel=
52
53 # PlanetLab development environment
54 if [ -f /etc/planetlab/plc_config ] ; then
55     . /etc/planetlab/plc_config
56     if [ -n "$PLC_DEVEL_FEDORA_URL" ] ; then
57         echo "* mkfedora : setting mirrors from /etc/planetlab/config"
58         mirrors=($PLC_DEVEL_FEDORA_URL)
59     fi
60 fi
61
62 usage()
63 {
64     echo "Usage: mkfedora [OPTION]... [basedir]"
65     echo "      -l url          Fedora mirror location. Defaults to try:"
66     for mirror in "${mirrors[@]}" ; do
67         echo "                  $mirror"
68     done
69     echo "      -r release      Fedora release number (default: $releasever)"
70     echo "      -a arch         Fedora architecture (default: $basearch)"
71     echo "      -g group1 -g group2 ..."
72     echo "                      Yumgroups to install (default: none)"
73     echo "      -p package1 -p package2 ..."
74     echo "                      Additional packages to install (default: none)"
75     echo "      -x package1 -x package2 ..."
76     echo "                      Packages to exclude (default: none)"
77     echo "      -k              Exclude kernel* packages from all repositories except bootstrap"
78     echo "      -v              Be verbose"
79     echo "      -h              This message"
80     exit 1
81 }
82
83 # Get options
84 while getopts "l:r:a:g:p:x:kvh" opt ; do
85     case $opt in
86         l)
87             if echo $OPTARG | grep -q -i '^\(file\|http[s]*\)://' ; then
88                 mirrors=($OPTARG)
89             else
90                 mirrors=(file://$OPTARG)
91             fi
92             ;;
93         r)
94             releasever=$OPTARG
95             ;;
96         a)
97             basearch=$OPTARG
98             ;;
99         g)
100             groups[${#groups[*]}]="$OPTARG"
101             ;;
102         p)
103             packages[${#packages[*]}]="$OPTARG"
104             ;;
105         x)
106             exclude[${#exclude[*]}]="$OPTARG"
107             ;;
108         k)
109             exclude_kernel="exclude=kernel* ulogd iptables"
110             ;;
111         v)
112             verbose=1
113             set -x
114             ;;
115         h|*)
116             usage
117             ;;
118     esac
119 done
120
121 shift $(($OPTIND - 1))
122 if [ ! -d "$1" ] ; then
123     usage
124 fi
125
126 vroot=$(cd $1 && pwd -P)
127
128 if [ $UID -ne 0 ] ; then
129     echo "Error: You must run this script as root."
130     exit 1
131 fi
132
133 fetch ()
134 {
135     curl --fail --silent --max-time 60 "$1"
136 }
137
138 # hard to find two mirrors with a similar layout
139 # set list of attempted locations according to releasever
140 if [ $releasever -ge 7 ] ; then
141     attempts="
142 $releasever/Everything/$basearch/os
143 core/$releasever/Everything/$basearch/os \
144 linux/core/$releasever/$basearch/os
145 "
146 else
147     attempts="
148 linux/core/$releasever/$basearch/os 
149 core/$releasever/$basearch/os 
150 $releasever/$basearch/os
151 "
152 fi
153
154 echo "$0: candidate mirrors"
155 for mirror in "${mirrors[@]}" ; do
156     echo "* candidate mirror $mirror"
157 done
158 baseurl=""
159 for mirror in "${mirrors[@]}" ; do
160     for attempt in $attempts; do 
161         attempturl=$mirror/$attempt
162         if fetch $attempturl/repodata/repomd.xml >/dev/null ; then
163             baseurl=$attempturl
164             break 2
165         fi
166     done
167 done
168
169 if [ -z "$baseurl" ] ; then
170     echo "Error: $releasever/$basearch/os/repodata/repomd.xml"
171     echo "       could not be found in any of the following locations:"
172     echo
173     for mirror in ${mirrors[@]} ; do
174         for attempt in $attempts ; do
175             echo $mirror/$attempt
176         done
177     done
178     echo
179     usage
180 fi
181
182 exec 3>&1
183 exec 4>&2
184 if [ $verbose -eq 0 ] ; then
185     exec 1>/dev/null
186     exec 2>/dev/null
187 fi
188
189 # Do not tolerate errors
190 set -e
191
192 # Mount /dev/pts and /dev/shm in reference image
193 mount -t devpts none $vroot/dev/pts
194 mount -t tmpfs none $vroot/dev/shm
195
196 ## make rpms ignore installing stuff to /proc
197 mkdir -p $vroot/etc/rpm
198 # Because of https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=52725
199 # you have to use at least one language beside 'C'
200 echo "%_install_langs C:de:en:es:fr" > $vroot/etc/rpm/macros
201 echo "%_netsharedpath /proc:/dev/pts" >> $vroot/etc/rpm/macros
202 # append to the vserver's rpm macros
203 echo "%_install_langs C:de:en:es:fr" > /etc/rpm/macros
204 echo "%_netsharedpath /proc:/dev/pts" >> /etc/rpm/macros
205 # Mount /proc in reference image
206 mkdir -p $vroot/proc
207 mount -t proc none $vroot/proc
208
209 cleanup ()
210 {
211     umount -l $vroot/proc
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