Remove grml-live-buildd package
[grml-live.git] / buildd / remove_isos.sh
diff --git a/buildd/remove_isos.sh b/buildd/remove_isos.sh
deleted file mode 100755 (executable)
index 6ec0193..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-# Filename:      /usr/share/grml-live/buildd/remove_isos.sh
-# Purpose:       upload grml ISOs to a rsync server
-# 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.
-################################################################################
-
-. /etc/grml/grml-buildd.conf || exit 1
-[ -n "$ISO_DIR" ] || exit 2
-
-cd $ISO_DIR || exit 3
-
-for file in *.iso ; do
-    rm -f "$file" "${file}".md5 "${file}".sha1
-done
-
-## END OF FILE #################################################################