refine strategy to spot ip address, keep on calling guest_ipv4
[build.git] / modules.update
index 56e3a6c..fc3c448 100755 (executable)
@@ -1,5 +1,15 @@
 #!/bin/bash
 
 # redirect this into modules.list to get it refreshed
+#
 
-for tags in *tags*mk ; do make stage1=true PLDISTROTAGS=$tags module-tools ; done | sort -u
+# 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$'