3 # Executed daily via cron, out of troup's crontab.
6 export SCRIPTVARS=/org/ftp.debian.org/katie/vars
9 ################################################################################
11 echo Archive maintenance started at $(date +%X)
13 NOTICE="$ftpdir/Archive_Maintenance_In_Progress"
22 Packages are currently being installed and indices rebuilt.
23 Maintenance is automatic, starting at 13:52 US Central time, and
24 ending at about 15:30. This file is then removed.
26 You should not mirror the archive during this period.
29 ################################################################################
31 echo "Creating pre-daily-cron-job backup of projectb database..."
32 pg_dump projectb > /org/ftp.debian.org/backup/dump_$(date +%Y.%m.%d-%H:%M:%S)
34 ################################################################################
38 update-mailingliststxt
40 ################################################################################
44 katie -pak *.changes | direport | tee REPORT | \
45 mail -s "Install for $(date +%D)" ftpmaster@ftp-master.debian.org
50 symlinks -d -r $ftpdir
56 cd /org/ftp.debian.org/database/dists/
57 rm -f proposed-updates_-_all.list
58 for i in proposed-updates_-_binary-* proposed-updates_-_source.list; do cat $i >> proposed-updates_-_all.list; done
60 # Generate override files
64 rm -f override.potato.all3
65 for i in main contrib non-free; do cat override.potato.$i >> override.potato.all3; done
67 # Generate Packages and Sources files
69 apt-ftparchive generate apt.conf
70 # Generate Release files
73 # Clean out old packages
82 echo Archive maintenance finished at $(date +%X)
84 ################################################################################
86 echo "Creating post-daily-cron-job backup of projectb database..."
87 pg_dump projectb > /org/ftp.debian.org/backup/dump_$(date +%Y.%m.%d-%H:%M:%S)
89 ################################################################################
92 echo "VACUUM; VACUUM ANALYZE;" | psql projectb 2>&1 | grep -v "^NOTICE: Skipping.*only table owner can VACUUM it$"
94 ################################################################################
96 ulimit -m 90000 -d 90000 -s 10000 -v 90000
98 run-parts --report /org/ftp.debian.org/scripts/distmnt
100 echo Daily cron scripts successful.