Split package into grml-live and grml-live-addons
[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" "${file}".md5 "${file}".sha1
16 done
17
18 ## END OF FILE #################################################################