From 20a0c897a6b069c87ef1f022f0648d5d3b3f3382 Mon Sep 17 00:00:00 2001 From: Marc Fiuczynski Date: Fri, 22 Feb 2008 20:49:53 +0000 Subject: [PATCH] minor clean up of code that invokes an optional .post processing script after packages from the specified .pkgs file have been installed --- build.sh | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index 70cb134..dc0d7a1 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 -- 2.43.0