X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=build.sh;h=eb0173259f58a89e9ac997627b0ff446ecb57bbc;hb=688582ca2749693214ce6bfe56ba32d1559a90a1;hp=8a2ae6a14fefff8aa3191b71b9c92b6813459328;hpb=60fe435eb4e2be0cd3eb854d47b2fad1de569f5e;p=myplc.git diff --git a/build.sh b/build.sh index 8a2ae6a..eb01732 100755 --- a/build.sh +++ b/build.sh @@ -3,91 +3,57 @@ # 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 +# Fedora 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 +# Marc E. Fiuczynski +# Copyright (C) 2006-2007 The Trustees of Princeton University # -# $Id$ +# $Id:$ # . build.functions -# -# Build myplc inside myplc-devel. Infinite recursion is avoided only -# if PLC_DEVEL_BOOTSTRAP is false in the default configuration file. -# - -if [ "$PLC_DEVEL_BOOTSTRAP" = "true" ] ; then - # So that we don't pollute the actual myplc-devel image, we use - # the directory that was used to build the image instead of the - # image itself, and mount everything by hand. - mount -o bind,rw devel/data devel/root/data - mount -t proc none devel/root/proc - - # If we used a local mirror, bind mount it into the chroot so that - # we can use it again. - if [ "${PLC_DEVEL_FEDORA_URL:0:7}" = "file://" ] ; then - mkdir -p devel/root/usr/share/mirrors/fedora - mount -o bind,ro ${PLC_DEVEL_FEDORA_URL#file://} devel/root/usr/share/mirrors/fedora - fi - - # Clean up before exiting if anything goes wrong - trap "umount $PWD/devel/root/data; - umount $PWD/devel/root/proc; - umount $PWD/devel/root/usr/share/mirrors/fedora" ERR INT - - # Build myplc inside myplc-devel. Make sure PLC_DEVEL_BOOTSTRAP is - # false to avoid infinite recursion. - chroot devel/root su - < $roothome/.profile +export PS1=" \$PS1" +EOF +chmod 644 $roothome/.profile + # Move "data" directories out of the installation -datadirs=( -/etc/planetlab -/var/lib/pgsql -/var/www/html/alpina-logs -/var/www/html/boot -/var/www/html/download -/var/www/html/generated -/var/www/html/install-rpms -/var/www/html/xml -) +echo "* myplc: Moving data directories out of the installation" +pl_move_dirs root data /data "${datadirs[@]}" + +# Fix permissions on tmp directories +pl_fixtmp_permissions data -move_datadirs root data "${datadirs[@]}" +# Remove generated bootmanager script +rm -f data/var/www/html/boot/bootmanager.sh # Initialize node RPMs directory. The PlanetLab-Bootstrap.tar.bz2 # tarball already contains all of the node RPMs pre-installed. Only # updates or optional packages should be placed in this directory. -if [ -n "$RPM_BUILD_DIR" ] ; then - echo "* myplc: Initializing node RPMs directory" - RPM_RPMS_DIR=$(cd $(dirname $RPM_BUILD_DIR)/RPMS && pwd -P) - mkdir -p data/var/www/html/install-rpms/planetlab - if [ -f $RPM_RPMS_DIR/yumgroups.xml ] ; then - install -D -m 644 $RPM_RPMS_DIR/yumgroups.xml \ - data/var/www/html/install-rpms/planetlab/yumgroups.xml - fi - # yum-2.0.x - if [ -x /usr/bin/yum-arch ] ; then - yum-arch data/var/www/html/install-rpms/planetlab - fi - # yum-2.4.x - if [ -x /usr/bin/createrepo ] ; then - if [ -f data/var/www/html/install-rpms/planetlab/yumgroups.xml ] ; then - groupfile="-g yumgroups.xml" - fi - createrepo $groupfile data/var/www/html/install-rpms/planetlab - fi -fi +install -D -m 644 $pl_YUMGROUPSXML \ + data/var/www/html/install-rpms/planetlab/yumgroups.xml # Make image out of directory echo "* myplc: Building loopback image" -make_image root root.img +pl_make_image root root.img 100000000 exit 0