Drop Latest change lines, add initial support for Debian/squeeze
[grml-live.git] / buildd / remove_isos.sh
1 #!/bin/sh
2 # Filename:      /usr/share/grml-live/buildd/remove_isos.sh
3 # Purpose:       upload grml ISOs to a rsync server
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 ################################################################################
8
9 . /etc/grml/grml-buildd.conf || exit 1
10 [ -n "$ISO_DIR" ] || exit 2
11
12 cd $ISO_DIR || exit 3
13
14 for file in *.iso ; do
15     rm -f "$file"
16     rm -f "${file}".md5
17 done
18
19 ## END OF FILE #################################################################