Remove grml-live-buildd package
[grml-live.git] / buildd / cronjob.sh
diff --git a/buildd/cronjob.sh b/buildd/cronjob.sh
deleted file mode 100755 (executable)
index 31a892e..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-# Filename:      cronjob.sh
-# Purpose:       example for a grml-live buildd cronjob setup
-# 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.
-################################################################################
-# Add something like that to the crontab to execute grml-live buildd
-# every day at a specific time:
-# 50 0 * * * /usr/share/grml-live/buildd/cronjob.sh
-#
-# On the mirror (where you're hosting the ISOs) you might want to
-# install something like that in your crontab:
-# 02  * * * * /home/mika/cronjobs/link_latest.sh
-# 03 03 * * * /home/mika/cronjobs/cleanup.sh
-################################################################################
-
-die() {
-  [ -n "$1" ] && echo "$1">&2
-  exit 1
-}
-
-. /etc/grml/grml-buildd.conf || die "Could not source /etc/grml/grml-buildd.conf. Exiting."
-
-[ -n "$FLAVOURS" ] || die "\$FLAVOURS is not set. Exiting."
-
-if [ -r /usr/share/grml-live/buildd/buildd_running ] ; then
-  echo "already running instance of grml-live buildd found, exiting.">&2
-  echo "if you think this is not true: rm /usr/share/grml-live/buildd/buildd_running">&2
-  exit 1
-fi
-
-echo $$ > /usr/share/grml-live/buildd/buildd_running
-
-for flavour in $FLAVOURS; do
-  /usr/share/grml-live/buildd/grml-live_autobuild_${flavour}.sh
-  /usr/share/grml-live/buildd/upload_isos.sh && \
-  /usr/share/grml-live/buildd/remove_isos.sh
-done
-
-rm -f /usr/share/grml-live/buildd/buildd_running
-
-## END OF FILE #################################################################