- use a valid node_id
[sliceimage.git] / build.sh
1 #!/bin/bash
2 #
3 # Builds VServer reference image. Requires the web and boot servers to
4 # be up, which complicates bootstrap. Alternatively, we could require
5 # the build server to host a local yum repository. Already, it is
6 # required to run the same major version of yum as the nodes.
7 #
8 # Mark Huang <mlhuang@cs.princeton.edu>
9 # Copyright (C) 2004-2005 The Trustees of Princeton University
10 #
11 # $Id: build.sh,v 1.1 2005/09/03 21:44:16 mlhuang Exp $
12 #
13
14 # Get the production /etc/yum.conf file. XXX When MAs begin deploying
15 # their own boot servers and/or code, this will have to change.
16 curl --silent http://boot.planet-lab.org/$(curl --silent --insecure --form node_id=1 --form file=/etc/yum.conf https://boot.planet-lab.org/db/plnodeconf/getsinglefile.php) > yum.conf
17
18 # Solve the bootstrap problem by including any just built packages in
19 # the yum configuration. This cooperates with the PlanetLab build
20 # system.
21 if [ -n "$RPM_BUILD_DIR" ] ; then
22     # Remove any [PlanetLab*] sections
23     sed -i -f - yum.conf <<EOF
24 # Match lines between [PlanetLab*] and the next [*
25 /\[PlanetLab.*\]/I,/^\[/{
26 # Delete [PlanetLab*]
27 /\[PlanetLab.*\]/Id
28 # Done when we see [*
29 /^\[/b
30 # Otherwise delete
31 d
32 }
33 EOF
34
35     # And replace them with a section for the RPMS that were just built
36     cat >> yum.conf <<EOF
37 [Bootstrap]
38 name=Bootstrap RPMS -- $(dirname $RPM_BUILD_DIR)/RPMS/
39 baseurl=file://$(dirname $RPM_BUILD_DIR)/RPMS/
40 EOF
41 fi
42
43 # Make /vservers
44 VROOT=$PWD/vservers/vserver-reference
45 install -d -m 755 $VROOT
46
47 MAKEDEV ()
48 {
49     rm -rf $VROOT/dev
50     mkdir -p $VROOT/dev
51     mknod -m 666 $VROOT/dev/null c 1 3
52     mknod -m 666 $VROOT/dev/zero c 1 5
53     mknod -m 666 $VROOT/dev/full c 1 7
54     mknod -m 644 $VROOT/dev/random c 1 8
55     mknod -m 644 $VROOT/dev/urandom c 1 9
56     mknod -m 666 $VROOT/dev/tty c 5 0
57     mknod -m 666 $VROOT/dev/ptmx c 5 2
58     # For bash command substitution
59     ln -nsf ../proc/self/fd /dev/fd
60     # For df and linuxconf
61     touch $VROOT/dev/hdv1
62     # For TUN/TAP
63     mkdir -p $VROOT/dev/net
64     mknod -m 600 $VROOT/dev/net/tun c 10 200
65 }
66
67 # Initialize /dev in reference image
68 MAKEDEV
69
70 # Mount /dev/pts in reference image
71 mkdir -p $VROOT/dev/pts
72 mount -t devpts none $VROOT/dev/pts
73
74 # Mount /proc in reference image
75 mkdir -p $VROOT/proc
76 mount -t proc none $VROOT/proc
77
78 # Clean up before exiting if anything goes wrong
79 trap "umount $VROOT/proc ; umount $VROOT/dev/pts ; exit 255" ERR
80
81 # Create a dummy /etc/fstab in reference image
82 mkdir -p $VROOT/etc
83 cat > $VROOT/etc/fstab <<EOF
84 # This fake fstab exists only to please df and linuxconf.
85 /dev/hdv1       /       ext2    defaults        1 1
86 EOF
87 cp $VROOT/etc/fstab $VROOT/etc/mtab
88
89 # Prevent all locales from being installed in reference image
90 mkdir -p $VROOT/etc/rpm
91 cat > $VROOT/etc/rpm/macros <<EOF
92 %_install_langs en_US:en
93 %_excludedocs 1
94 %__file_context_path /dev/null
95 EOF
96
97 # This tells the Boot Manager that it is okay to update
98 # /etc/resolv.conf and /etc/hosts whenever the network configuration
99 # changes. Users are free to delete this file.
100 touch $VROOT/etc/AUTO_UPDATE_NET_FILES
101
102 # Trick rpm and yum, who read the real root /etc/rpm/macros file
103 # rather than the one installed in the reference image, despite what
104 # you might expect the --root and --installroot options to mean. Both
105 # programs always read $HOME/.rpmmacros.
106 export HOME=$PWD
107 ln -sf $VROOT/etc/rpm/macros $PWD/.rpmmacros
108
109 # Initialize RPM database in reference image
110 mkdir -p $VROOT/var/lib/rpm
111 rpm --root $VROOT --initdb
112
113 # Go, baby, go
114 yum -c yum.conf --installroot=$VROOT -y groupinstall VServer
115
116 # Remove stale RPM locks
117 rm -f $VROOT/var/lib/rpm/__db*
118
119 # Clean up /dev in reference image
120 umount $VROOT/dev/pts
121 MAKEDEV
122
123 # Disable all services in reference image
124 /usr/sbin/chroot $VROOT /bin/sh -c "/sbin/chkconfig --list | awk '{ print \$1 }' | xargs -i /sbin/chkconfig {} off"
125
126 # Clean up
127 umount $VROOT/proc
128
129 exit 0