can yum install groups (use +++ for space) in bootstrapfs and vserver-reference
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Fri, 9 Oct 2009 13:40:34 +0000 (13:40 +0000)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Fri, 9 Oct 2009 13:40:34 +0000 (13:40 +0000)
build.sh

index 9984e7a..569dc47 100755 (executable)
--- a/build.sh
+++ b/build.sh
@@ -91,7 +91,10 @@ systemvserver_count=$(ls ../build/config.${pldistro}/vserver-*.pkgs 2> /dev/null
 
     # Install the system vserver specific packages
     [ -n "$systempackages" ] && yum -c ${vdir}/etc/mkfedora-yum.conf --installroot=${vdir} -y install $systempackages
-    [ -n "$systemgroups" ] && yum -c ${vdir}/etc/mkfedora-yum.conf --installroot=${vdir} -y groupinstall $systemgroups
+    for group_plus in $systemgroups; do
+       group=$(echo $group_plus | sed -e "s,+++, ,g")
+        yum -c ${vdir}/etc/mkfedora-yum.conf --installroot=${vdir} -y groupinstall "$group"
+    done
 
     pkgsdir=$(dirname $pkgsfile)
     pkgsname=$(basename $pkgsfile .pkgs)