X-Git-Url: http://git.onelab.eu/?p=build.git;a=blobdiff_plain;f=modules.update;h=fc3c448abd1d5ac5f99c73e89345cd300b05e093;hp=0f5a27b6d5440661b90c8e6365d3e19b7fe4767a;hb=1f4f80e0c7dc71ef79614227c195139a56d1421e;hpb=79402a67035dc5bff06925be82dd273094125cec diff --git a/modules.update b/modules.update index 0f5a27b6..fc3c448a 100755 --- a/modules.update +++ b/modules.update @@ -2,8 +2,14 @@ # redirect this into modules.list to get it refreshed # -# we set DISTRONAME as this cannot be correctly guessed from the build box root context -for distro in onelab planetlab ; do - tags=${distro}-tags.mk - make stage1=true PLDISTRO=${distro} PLDISTROTAGS=${tags} DISTRONAME=f8 module-tools -done | sort -u | grep -v '^build$' + +# run on several distros as we filter out duplicates anyways +# centos5 has more of our modules, but skips sfa +fcdistros="f14 f16" + +( for fcdistro in $fcdistros; do + make stage1=true PLDISTRO=onelab PLDISTROTAGS=onelab-tags.mk DISTRONAME=${fcdistro} module-tools ; + make stage1=true PLDISTRO=lxc PLDISTROTAGS=lxc-tags.mk DISTRONAME=${fcdistro} module-tools ; + done 2>/dev/null ; + echo tests +) | sort -uf | grep -v '^build$'