]> git.decadent.org.uk Git - dak.git/blobdiff - cron.weekly-non-US
Stop using silly names, and migrate to a saner directory structure.
[dak.git] / cron.weekly-non-US
diff --git a/cron.weekly-non-US b/cron.weekly-non-US
deleted file mode 100755 (executable)
index 0873e75..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-#
-# Run once a week via cron, out of katie's crontab.
-
-set -e
-export SCRIPTVARS=/org/non-us.debian.org/katie/vars-non-US
-. $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-non-US
-
-################################################################################