buildd: use upload_logs() instead of create_logs()
[grml-live.git] / buildd / upload_isos.sh
index 8b5462d..0d89e9f 100755 (executable)
@@ -4,7 +4,7 @@
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2 or any later version.
-# Latest change: Sun Dec 09 18:10:08 CET 2007 [mika]
+# Latest change: Sun Dec 16 22:07:02 CET 2007 [mika]
 ################################################################################
 
 . /etc/grml/grml-buildd.conf || exit 1
@@ -20,6 +20,9 @@ for file in *.iso ; do
     chmod 664 "${file}".md5
 done
 
-rsync --times --partial -az --quiet $ISO_DIR/* $RSYNC_MIRROR
+for flavour in grml-small_etch grml-small_sid grml-medium_etch grml-medium_sid grml_sid grml_etch \
+               grml64-small_etch grml64-small_sid grml64-medium_etch grml64-medium_sid grml64_sid grml64_etch ; do
+    rsync --times --partial -az --quiet $flavour* $RSYNC_MIRROR/$flavour/
+done
 
 ## END OF FILE #################################################################