X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=build.sh;h=00cda860eac5e67670289ebbe78fad58983a17be;hb=cf0fe89911bfd82392c460ad1db113373b01d923;hp=70cb134fff4a48cd3af2a14a176407ad1eb52c41;hpb=5f649411973be2bb9a5ad7f995127456374118ce;p=bootstrapfs.git diff --git a/build.sh b/build.sh index 70cb134..00cda86 100755 --- a/build.sh +++ b/build.sh @@ -62,8 +62,12 @@ pkgsfile=$(pl_locateDistroFile ../build/ ${pldistro} bootstrapfs.pkgs) # -k = exclude kernel* packages pl_root_mkfedora -k -f $pkgsfile ${vref} -postfile=$(pl_locateDistroFile ../build/ ${pldistro} bootstrapfs.post) -[ "$postfile" != "not-found-by-pl_locateDistroFile" ] && /bin/bash $postfile ${vref} || : +# optionally invoke a post processing script after packages from +# $pkgsfile have been installed +pkgsdir=$(dirname $pkgsfile) +pkgsname=$(basename $pkgsfile .pkgs) +postfile="${pkgsdir}/${pkgsname}.post" +[ -f $postfile ] && /bin/bash $postfile ${vref} || : # for distros that do not define bootstrapfs variants pkgs_count=$(ls ../build/config.${pldistro}/bootstrapfs-*.pkgs 2> /dev/null | wc -l) @@ -95,8 +99,12 @@ pkgs_count=$(ls ../build/config.${pldistro}/bootstrapfs-*.pkgs 2> /dev/null | wc umount ${vdir}/proc fi - postfile=$(echo $pkgs | sed -e s,pkgs,post, ) - [ "$postfile" != "not-found-by-pl_locateDistroFile" ] && /bin/bash $postfile ${vdir} || : + # optionally invoke a post processing script after packages from + # $pkgs have been installed + pkgsdir=$(dirname $pkgs) + pkgsname=$(basename $pkgs .pkgs) + postfile="${pkgsdir}/${pkgsname}.post" + [ -f $postfile ] && /bin/bash $postfile ${vdir} || : # Create a copy of the ${NAME} bootstrap filesystem w/o the base @@ -135,7 +143,7 @@ done # Build the base Bootstrap filesystem # clean out yum cache to reduce space requirements -yum -c ${vref}/etc/yum.conf --installroot=${vdir} -y clean all +yum -c ${vref}/etc/yum.conf --installroot=${vref} -y clean all echo "--------STARTING tar'ing PlanetLab-Bootstrap.tar.bz2: $(date)" tar -cpjf PlanetLab-Bootstrap.tar.bz2 -C ${vref} .