X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=build.sh;h=4cb08f42a64ed5a043779b464e88267d53fd50c1;hb=ddb8e8b6a1a6d34959fd567c36a88e7afe56e093;hp=a10ac880d9de5e79308233cb16ea1901785117c6;hpb=8567420399833aebe1b32de439dbd841a762e0ff;p=myplc.git diff --git a/build.sh b/build.sh index a10ac88..4cb08f4 100755 --- a/build.sh +++ b/build.sh @@ -1,10 +1,11 @@ #!/bin/bash # -# 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). +# Builds MyPLC in the current host environment +# This is for the so-called chroot installation mode, meaning that +# the resulting rpm will install a full chroot image in /plc/root +# that can be run through chroot /plc/root +# This chroot mode is to be opposed to the native mode (see build-native.sh) +# that can be used in the host's root context or within a vserver # # root.img (loopback image) # root/ (mount point) @@ -21,8 +22,7 @@ . build.functions # pldistro expected as $1 - defaults to planetlab -pldistro=planetlab -[ -n "$@" ] && pldistro=$1 +pldistro=$1 ; shift # These directories are allowed to grow to unspecified size, so they # are stored as symlinks to the /data partition. mkfedora and yum @@ -50,8 +50,10 @@ pl_fixdirs root "${datadirs[@]}" echo "* myplc: Installing base filesystem" mkdir -p root data +pl_root_makedevs root pkgsfile=$(pl_locateDistroFile ../build/ ${pldistro} myplc.pkgs) -pl_root_setup_chroot root -f $pkgsfile +pl_root_mkfedora root $pldistro $pkgsfile +pl_root_tune_image root # Install configuration scripts echo "* myplc: Installing configuration scripts" @@ -69,8 +71,8 @@ install -D -m 755 check-ssl-peering.py root/usr/bin/check-ssl-peering.py 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 +mkdir root/etc/plc_sliceinitscripts +cp plc_sliceinitscripts/* root/etc/plc_sliceinitscripts # Install initscripts echo "* myplc: Installing initscripts" @@ -151,8 +153,11 @@ 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. +nodefamily=${pldistro}-${pl_DISTRO_ARCH} install -D -m 644 $pl_DISTRO_YUMGROUPS \ - data/var/www/html/install-rpms/planetlab/yumgroups.xml + data/var/www/html/install-rpms/$nodefamily/yumgroups.xml +# temporary - so that node update still work until yum.conf.php gets fixed +( cd data/var/www/html/install-rpms ; ln -s $nodefamily planetlab) # Make image out of directory echo "* myplc: Building loopback image"