X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=buildd%2Fremove_isos.sh;fp=buildd%2Fremove_isos.sh;h=0000000000000000000000000000000000000000;hb=019fbefe5b29bb4e95808163f0cd645640cad30c;hp=6ec0193f7568141e9110881b7adc51b1cb4a7383;hpb=9a1ee76bc3fa423968d666e36422000e4ee979d6;p=grml-live-grml.git diff --git a/buildd/remove_isos.sh b/buildd/remove_isos.sh deleted file mode 100755 index 6ec0193..0000000 --- a/buildd/remove_isos.sh +++ /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 -# 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 #################################################################