]> git.decadent.org.uk Git - dak.git/blobdiff - cron.weekly
Stop using silly names, and migrate to a saner directory structure.
[dak.git] / cron.weekly
diff --git a/cron.weekly b/cron.weekly
deleted file mode 100755 (executable)
index 8357d2e..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-#
-# Run once a week via cron, out of katie's crontab.
-
-set -e
-export SCRIPTVARS=/org/ftp.debian.org/katie/vars
-. $SCRIPTVARS
-
-################################################################################
-
-# Purge empty directories
-
-if [ ! -z "$(find $ftpdir/pool/ -type d -empty)" ]; then
-   find $ftpdir/pool/ -type d -empty | xargs rmdir;
-fi
-
-# Clean up apt-ftparchive's databases
-
-cd $masterdir
-apt-ftparchive -q clean apt.conf
-apt-ftparchive -q clean apt.conf.buildd
-
-################################################################################