3 # Run once a week via cron, out of troup's crontab.
6 export SCRIPTVARS=/org/ftp.debian.org/katie/vars
9 ################################################################################
15 # Purge empty directories
17 if [ ! -z "$(find $ftpdir/pool/ -type d -empty)" ]; then
18 find $ftpdir/pool/ -type d -empty | xargs rmdir;
21 # Clean up apt-ftparchive's databases
24 apt-ftparchive -q clean apt.conf
26 ################################################################################