X-Git-Url: http://git.onelab.eu/?p=myplc.git;a=blobdiff_plain;f=build.sh;h=bbd08c343208a794b57fa891ded5155132c2e682;hp=d5d2a5773f2f91b644a0d8dfb387c6e41ac914ba;hb=8405c6fedf8018ff2d2b172fd82dfd1c0033bc53;hpb=e50aa533a7ff20580d6cf3dbf34c5e459a250a5c diff --git a/build.sh b/build.sh index d5d2a57..bbd08c3 100755 --- a/build.sh +++ b/build.sh @@ -3,7 +3,7 @@ # 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) @@ -13,9 +13,10 @@ # 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: build.sh,v 1.40 2007/01/30 16:03:20 mlhuang Exp $ +# $Id: build.sh,v 1.41 2007/08/22 02:04:56 faiyaza Exp $ # . build.functions @@ -40,13 +41,8 @@ datadirs=( /var/tmp /var/log ) -for datadir in "${datadirs[@]}" ; do - # If we are being re-run, it may be a symlink - if [ -h root/$datadir ] ; then - rm -f root/$datadir - mkdir -p root/$datadir - fi -done + +pl_fixdirs root "${datadirs[@]}" echo "* myplc: Installing base filesystem" mkdir -p root data @@ -100,10 +96,10 @@ chmod 644 $roothome/.profile # Move "data" directories out of the installation echo "* myplc: Moving data directories out of the installation" -move_datadirs root data "${datadirs[@]}" +pl_move_dirs root data /data "${datadirs[@]}" # Fix permissions on tmp directories -chmod 1777 data/tmp data/usr/tmp data/var/tmp +pl_fixtmp_permissions data # Remove generated bootmanager script rm -f data/var/www/html/boot/bootmanager.sh @@ -111,11 +107,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. -install -D -m 644 ../build/groups/v4_yumgroups.xml \ +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