3 # Run once a week via cron, out of katie's crontab.
6 export SCRIPTVARS=/org/backports.org/dak-config/vars
9 ################################################################################
11 # Purge empty directories
13 if [ ! -z "$(find $ftpdir/pool/ -type d -empty)" ]; then
14 find $ftpdir/pool/ -type d -empty | xargs rmdir;
17 # Clean up apt-ftparchive's databases
20 apt-ftparchive -q clean apt.conf
22 ################################################################################