X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=buildd%2Fupload_isos.sh;fp=buildd%2Fupload_isos.sh;h=67495001f1c36d6dfa12610b4c1e70e0c50f8fa3;hp=0000000000000000000000000000000000000000;hb=328682f98d399e1f24ae7729ec740e56ef6f6257;hpb=c2d7210e5eadedf3de49db954faeee88c8b18d5e diff --git a/buildd/upload_isos.sh b/buildd/upload_isos.sh new file mode 100755 index 0000000..6749500 --- /dev/null +++ b/buildd/upload_isos.sh @@ -0,0 +1,16 @@ +#!/bin/sh +# Filename: upload_isos.sh +# Purpose: upload generated ISOs to daily.grml.org +# Authors: grml-team (grml.org), (c) Michael Prokop +# Bug-Reports: see http://grml.org/bugs/ +# License: This file is licensed under the GPL v2 or any later version. +# Latest change: Sun Oct 07 13:06:09 CEST 2007 [mika] +################################################################################ + +cd /grml-live/grml-isos || exit 1 +for file in *.iso ; do + [ -f "${file}.md5" ] || md5sum $file > $file.md5 +done +rsync --partial -az --quiet /grml-live/grml-isos/* grml-build@debian.netcologne.de:/home/ftp/www.grml.org/daily/ + +## END OF FILE #################################################################