X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=modules.update;h=fc3c448abd1d5ac5f99c73e89345cd300b05e093;hb=ccdbfde0e9cda749d790f901247f1c524177c951;hp=6a007f8ec9a851cdf6aaa9d8886fe3695f347b6a;hpb=57de9156d842c1ca629299ca920248be357d141f;p=build.git diff --git a/modules.update b/modules.update index 6a007f8e..fc3c448a 100755 --- a/modules.update +++ b/modules.update @@ -3,13 +3,13 @@ # redirect this into modules.list to get it refreshed # -# keep centos5 as the default target rather than - more accurate - f8 b/c we need more of our modules on centos -fcdistro=centos5 +# run on several distros as we filter out duplicates anyways +# centos5 has more of our modules, but skips sfa +fcdistros="f14 f16" -( \ - make stage1=true PLDISTRO=planetlab PLDISTROTAGS=planetlab-tags.mk DISTRONAME=${fcdistro} module-tools ; \ - make stage1=true PLDISTRO=planetlab PLDISTROTAGS=planetlab-k27-tags.mk DISTRONAME=${fcdistro} module-tools ; \ - make stage1=true PLDISTRO=onelab PLDISTROTAGS=onelab-tags.mk DISTRONAME=${fcdistro} module-tools ; \ - make stage1=true PLDISTRO=onelab PLDISTROTAGS=onelab-k27-tags.mk DISTRONAME=${fcdistro} module-tools ; \ +( 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 -u | grep -v '^build$' +) | sort -uf | grep -v '^build$'