X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=build.sh;h=a10ac880d9de5e79308233cb16ea1901785117c6;hb=8567420399833aebe1b32de439dbd841a762e0ff;hp=f0243e56317873ea28692993328f244fef274a21;hpb=878d28d6cdde67948953fa0ba144c95ce4317493;p=myplc.git diff --git a/build.sh b/build.sh index f0243e5..a10ac88 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,16 @@ #!/bin/bash # -# Builds a Fedora based PLC image. You should be able to run this -# script multiple times without a problem. +# Builds MyPLC, either inside the MyPLC development environment in +# devel/root (if PLC_DEVEL_BOOTSTRAP is true), or in the current host +# environment (may be itself a MyPLC development environment or a +# Fedora Core 4 environment with the appropriate development packages +# installed). +# +# root.img (loopback image) +# root/ (mount point) +# data/ (various data files) +# data/etc/planetlab/ (configuration files) +# data/root (root's homedir) # # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University @@ -9,271 +18,144 @@ # $Id$ # -PATH=/sbin:/bin:/usr/sbin:/usr/bin - -# In both a normal CVS environment and a PlanetLab RPM -# build environment, all of our dependencies are checked out into -# directories at the same level as us. -if [ -d ../build ] ; then - PATH=$PATH:../build - srcdir=.. -else - echo "Error: Could not find $(cd .. && pwd -P)/build/" - exit 1 -fi - -export PATH - -# PLC configuration file -config=plc_config.xml - -# Release and architecture to install -releasever=2 -basearch=i386 - -# Initial size of the image -size=1000000000 - -usage() -{ - echo "Usage: build.sh [OPTION]..." - echo " -c file PLC configuration file (default: $config)" - echo " -r release Fedora release number (default: $releasever)" - echo " -a arch Fedora architecture (default: $basearch)" - echo " -s size Approximate size of the installation (default: $size)" - echo " -h This message" - exit 1 -} - -# Get options -while getopts "c:r:a:s:h" opt ; do - case $opt in - c) - config=$OPTARG - ;; - r) - releasever=$OPTARG - ;; - a) - basearch=$OPTARG - ;; - s) - size=$OPTARG - ;; - h|*) - usage - ;; - esac -done - -# Do not tolerate errors -set -e - -root=root -data=data - -if [ ! -f $root.img ] ; then - bs=4096 - count=$(($size / 4096)) - dd bs=$bs count=$count if=/dev/zero of=$root.img - mkfs.ext3 -j -F $root.img -fi - -mkdir -p $root $data -mount -o loop $root.img $root -trap "umount $root" ERR - -# -# Build -# - -# Get package list -while read package ; do - packages="$packages -p $package" -done < <(./plc-config --packages $config) - -# Install base system -mkfedora -v -r $releasever -a $basearch $packages $root - -# Disable all services in reference image -chroot $root sh -c "/sbin/chkconfig --list | awk '{ print \$1 }' | xargs -i /sbin/chkconfig {} off" - -# FC2 minilogd starts up during shutdown and makes unmounting -# impossible. Just get rid of it. -rm -f $root/sbin/minilogd -ln -nsf /bin/true $root/sbin/minilogd - -# Build schema -make -C $srcdir/pl_db - -# -# Install -# - -# Install configuration scripts -echo "* Installing configuration scripts" -install -D -m 755 plc_config.py $root/tmp/plc_config.py -chroot $root sh -c 'cd /tmp; python plc_config.py build; python plc_config.py install' -install -D -m 755 plc-config $root/usr/bin/plc-config -install -D -m 755 api-config $root/usr/bin/api-config - -# Install init script -echo "* Installing initscript" -install -D -m 755 guest.init $root/etc/init.d/plc -chroot $root sh -c 'chkconfig --add plc; chkconfig plc on' - -# Install DB schema and API code -echo "* Installing DB schema and API code" -mkdir -p $root/usr/share -rsync -a $srcdir/pl_db $srcdir/plc_api $root/usr/share/ - -# Install web scripts -echo "* Installing web scripts" -mkdir -p $root/usr/bin -install -m 755 \ - $srcdir/plc/scripts/gen-sites-xml.py \ - $srcdir/plc/scripts/gen-slices-xml-05.py \ - $srcdir/plc/scripts/gen-static-content.py \ - $root/usr/bin/ +. build.functions -# Install web pages -echo "* Installing web pages" -mkdir -p $root/var/www/html -# Exclude old cruft, unrelated GENI pages, and official documents -rsync -a \ - --exclude='*2002' --exclude='*2003' \ - --exclude=geni --exclude=PDN --exclude=Talks \ - $srcdir/plc_www/ $root/var/www/html/ - -# XXX Build imprintable BootCD and BootManager images. - -# Install configuration file -echo "* Installing configuration file" -install -D -m 644 $config $data/etc/planetlab/plc_config.xml +# pldistro expected as $1 - defaults to planetlab +pldistro=planetlab +[ -n "$@" ] && pldistro=$1 -# Move "data" directories out of the installation +# These directories are allowed to grow to unspecified size, so they +# are stored as symlinks to the /data partition. mkfedora and yum +# expect some of them to be real directories, however. datadirs=( /etc/planetlab +/root /var/lib/pgsql /var/www/html/alpina-logs /var/www/html/boot /var/www/html/download +/var/www/html/files +/var/www/html/sites /var/www/html/generated /var/www/html/install-rpms /var/www/html/xml +/tmp +/usr/tmp +/var/tmp +/var/log ) -echo "* Moving data directories out of the installation" -mkdir -p $root/data -for datadir in "${datadirs[@]}" ; do - mkdir -p ${data}$datadir - if [ -d $root/$datadir -a ! -h $root/$datadir ] ; then - (cd $root && find ./$datadir | cpio -p -d -u ../$data/) - fi - rm -rf $root/$datadir - mkdir -p $(dirname $root/$datadir) - ln -nsf /data$datadir $root/$datadir -done +pl_fixdirs root "${datadirs[@]}" -# Shrink to 100 MB free space -kb=$(python < target: - print (df.f_blocks - (df.f_bavail - target)) * df.f_bsize / 1024 -EOF -) +echo "* myplc: Installing base filesystem" +mkdir -p root data -umount $root -trap - ERR +pkgsfile=$(pl_locateDistroFile ../build/ ${pldistro} myplc.pkgs) +pl_root_setup_chroot root -f $pkgsfile + +# Install configuration scripts +echo "* myplc: Installing configuration scripts" +install -D -m 755 plc_config.py root/tmp/plc_config.py +chroot root sh -c 'cd /tmp; python plc_config.py build; python plc_config.py install' +install -D -m 755 plc-config root/usr/bin/plc-config +install -D -m 755 plc-config-tty root/usr/bin/plc-config-tty +install -D -m 755 db-config root/usr/bin/db-config +install -D -m 755 dns-config root/usr/bin/dns-config +install -D -m 755 plc-map.py root/usr/bin/plc-map.py +install -D -m 755 clean-empty-dirs.py root/usr/bin/clean-empty-dirs.py +install -D -m 755 mtail.py root/usr/bin/mtail.py +install -D -m 755 check-ssl-peering.py root/usr/bin/check-ssl-peering.py +# Extra scripts (mostly for mail and dns) not installed by myplc by default. Used in production +mkdir root/etc/support-scripts +cp support-scripts/* root/etc/support-scripts +# copy initscripts to etc/plc_sliceinitscripts +mkdir etc/plc_sliceinitscripts +cp plc_sliceinitscripts/* etc/plc_sliceinitscripts + +# Install initscripts +echo "* myplc: Installing initscripts" +find plc.d | cpio -p -d -u root/etc/ +install -D -m 755 guest.init root/etc/init.d/plc +chroot root sh -c 'chkconfig --add plc; chkconfig plc on' + +# fetch the release stamp from the build if any +# I could not come up with any more sensitive scheme +if [ -f ../../../myplc-release ] ; then + cp ../../../myplc-release myplc-release +else + echo "Cannot find release information." > myplc-release + date >> myplc-release + echo "$HeadURL$" >> myplc-release +fi +# install it in /etc/myplc-release +install -m 444 myplc-release root/etc/myplc-release + +### Thierry Parmentelat - april 16 2007 +# fix the yum.conf as produced by mkfedora +# so we can use the build's fc4 mirror for various installs/upgrades +# within the chroot jail +# yum_conf_to_build_host is defined in build.functions +yum_conf_to_build_host > root/etc/yum.conf + +### Thierry Parmentelat - july 20 2007 +# we now build the myplc doc +# beware that making the pdf file somehow overwrites the html +make -C doc myplc.pdf +rm -f doc/myplc.html +make -C doc myplc.html + +# install at the same place as plcapi - better ideas ? +for doc in myplc.html myplc.pdf ; do + install -m 644 doc/$doc root/usr/share/plc_api/doc/$doc +done -if [ -n "$kb" ] ; then - # Setup loopback association. Newer versions of losetup have a -f - # option which finds an unused loopback device, but we must - # support FC2 for now. - # dev_loop=$(losetup -f) - for i in `seq 1 7` ; do - if ! grep -q "^/dev/loop$i" /proc/mounts ; then - dev_loop="/dev/loop$i" - break - fi - done - losetup $dev_loop $root.img - trap "losetup -d $dev_loop" ERR +# we now build the plcapi doc +# this generates a drupal php file from a docbook-generated html +# quick & dirty +docbook_html_to_drupal "${pldistro} PLCAPI Documentation" \ + root/usr/share/plc_api/doc/PLCAPI.html \ + root/var/www/html/planetlab/doc/plcapi.php +# pdf just get copied +install -m 644 root/usr/share/plc_api/doc/PLCAPI.pdf root/var/www/html/planetlab/doc/plcapi.pdf + +docbook_html_to_drupal "Myplc User Guide" \ + root/usr/share/plc_api/doc/myplc.html \ + root/var/www/html/planetlab/doc/myplc.php +# pdf just get copied +install -m 644 root/usr/share/plc_api/doc/myplc.pdf root/var/www/html/planetlab/doc/myplc.pdf - # Resize the filesystem - echo "* Checking filesystem" - e2fsck -a -f $dev_loop - echo "* Shrinking filesystem" - resize2fs $dev_loop ${kb}K +# Install configuration file +echo "* myplc: Installing configuration file" +install -D -m 444 default_config.xml data/etc/planetlab/default_config.xml +install -D -m 444 plc_config.dtd data/etc/planetlab/plc_config.dtd + +# handle root's homedir and tweak root prompt +echo "* myplc: root's homedir and prompt" +roothome=data/root +mkdir -p $roothome +cat << EOF > $roothome/.profile +export PS1=" \$PS1" +EOF +chmod 644 $roothome/.profile - # Tear down loopback association - losetup -d $dev_loop - trap - ERR +# Move "data" directories out of the installation +echo "* myplc: Moving data directories out of the installation" +pl_move_dirs root data /data "${datadirs[@]}" - # Truncate the image file - perl -e "truncate '$root.img', $kb*1024" -fi +# Fix permissions on tmp directories +pl_fixtmp_permissions data -# Write sysconfig -cat >plc.sysconfig <100MB but only take a -# couple of seconds to generate at first boot. -rm -f $data/var/www/html/download/*.{iso,usb} -install -D -m 644 $config $data/etc/planetlab/plc_config.xml +install -D -m 644 $pl_DISTRO_YUMGROUPS \ + data/var/www/html/install-rpms/planetlab/yumgroups.xml -./host.init stop -RETVAL=$(($RETVAL+$?)) +# Make image out of directory +echo "* myplc: Building loopback image" +pl_make_image root root.img 100000000 -exit $RETVAL +exit 0